ComponentOne GridView for ASP.NET WebForms
C1.Web.Wijmo.Controls.4 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / C1GridView Class / SelectedIndexChanging Event

In This Topic
    SelectedIndexChanging Event
    In This Topic
    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
    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.

    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