Public Class ChartInfoEventArgs Inherits EventArgs Private _chart As UltraChart = Nothing Private _row As UltraGridRow = Nothing Public Sub New(ByVal Chart As UltraChart, ByVal Row As UltraGridRow) _chart = Chart _row = Row End Sub Public ReadOnly Property WinChart() As UltraChart Get Return _chart End Get End Property Public ReadOnly Property Row() As UltraGridRow Get Return _row End Get End Property End Class