'Declaration Public Event HierarchyRowToggling As C1GridViewHierarchyRowTogglingEventHandler
public event C1GridViewHierarchyRowTogglingEventHandler HierarchyRowToggling
Event Data
The event handler receives an argument of type C1GridViewHierarchyRowTogglingEventArgs containing data related to this event. The following C1GridViewHierarchyRowTogglingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Expanding | Indicates whether the row is expanding or collapsing. |
Keys | Gets a dictionary that represents an associated master data key value. |
RowIndex | The index of the row being toggled. |
Remarks
To cancel the action set the Cancel property of the C1GridViewHierarchyRowTogglingEventHandler object to true.
See Also