'Declaration Public Event ColumnUngrouping As C1GridViewColumnUngroupEventHandler
public event C1GridViewColumnUngroupEventHandler ColumnUngrouping
Event Data
The event handler receives an argument of type C1GridViewColumnUngroupEventArgs containing data related to this event. The following C1GridViewColumnUngroupEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Column | The C1BaseField object being ungrouped. |
Remarks
To cancel the action set the Cancel property of the C1GridViewColumnUngroupEventArgs object to true.
See Also