'Declaration Public Event SelectedIndexChanging As C1GridViewSelectEventHandler
public event C1GridViewSelectEventHandler SelectedIndexChanging
Event Data
The event handler receives an argument of type C1GridViewSelectEventArgs containing data related to this event. The following C1GridViewSelectEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
NewSelectedIndex | Gets or sets the index of the new row to select in the C1GridView control. |
Remarks
To cancel the operation set the Cancel property of the C1GridViewSelectEventArgs object to true.
See Also