'Declaration
Public Event GroupChanging As System.EventHandler(Of DataGridGroupChangingEventArgs)
public event System.EventHandler<DataGridGroupChangingEventArgs> GroupChanging
Event Data
The event handler receives an argument of type DataGridGroupChangingEventArgs containing data related to this event. The following DataGridGroupChangingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from C1.Silverlight.CancelEventArgs) |
ChangingColumns | Gets the columns will be grouped if this event is not cancelled. |
Remarks
Grouping state changes when user drag a column on the grouping panel or when the GroupBy method is called.
See Also