C1.Web.Wijmo.Controls.45 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / C1GridView Class / SelectedIndexChanging Event

SelectedIndexChanging Event
Occurs when a row's Select button is clicked, but before the C1GridView control handles the select operation.
Syntax
'Declaration
 
Public Event SelectedIndexChanging As C1GridViewSelectEventHandler
 
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.

PropertyDescription
(Inherited from System.ComponentModel.CancelEventArgs)
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