'Declaration
Public Event HotRowChanged As EventHandler(Of C1List.RowChangedEventArgs)
public event EventHandler<C1List.RowChangedEventArgs> HotRowChanged
Event Data
The event handler receives an argument of type C1List.RowChangedEventArgs containing data related to this event. The following C1List.RowChangedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
FromRow | Old row. |
ToRow | New row. |
Remarks
The HotTracking property should be True.
See Also