'Declaration Public Event PageIndexChanging As C1GridViewPageEventHandler
public event C1GridViewPageEventHandler PageIndexChanging
Event Data
The event handler receives an argument of type C1GridViewPageEventArgs containing data related to this event. The following C1GridViewPageEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
NewPageIndex | Gets or sets the index of the new page. |
Remarks
To cancel the operation set the Cancel property of the C1GridViewPageEventArgs object to true. You must implement this event if the grid is not bound to a DataSource control.
See Also