'Declaration
Public Event SortChanging As System.EventHandler(Of DataGridSortChangingEventArgs)
public event System.EventHandler<DataGridSortChangingEventArgs> SortChanging
Event Data
The event handler receives an argument of type DataGridSortChangingEventArgs containing data related to this event. The following DataGridSortChangingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from C1.Silverlight.CancelEventArgs) |
ChangingColumns | Gets the columns will be sorted if this event is not cancelled. |
Remarks
Sorting state changes when user click in a column header or when the SortBy method is called.
See Also