'Declaration
<C1DescriptionAttribute("C1TreeView.ApplyNodeCellStyles", "Occurs before applying styles to a cell of tree node.")> <C1CategoryAttribute("Behavior")> Public Event ApplyNodeCellStyles As C1TreeViewNodeCellStylesEventHandler
[C1Description("C1TreeView.ApplyNodeCellStyles", "Occurs before applying styles to a cell of tree node.")] [C1Category("Behavior")] public event C1TreeViewNodeCellStylesEventHandler ApplyNodeCellStyles
Event Data
The event handler receives an argument of type C1TreeViewNodeCellStylesEventArgs containing data related to this event. The following C1TreeViewNodeCellStylesEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ColumnIndex | Gets the tree column index of TreeView control. (Inherited from C1.Win.TreeView.C1TreeViewNodeCellEventArgs) |
Node | Gets the tree node that has been checked, expanded, collapsed, or selected. (Inherited from C1.Win.TreeView.C1TreeViewEventArgs) |
NodeCellStyles | Gets the cell of tree node styles of TreeView control. |
See Also