'Declaration
<C1DescriptionAttribute("C1TreeView.ApplyNodeCellToolTipText", "Occurs before displaying tree node tooltip.")> <C1CategoryAttribute("Behavior")> Public Event ApplyNodeCellToolTipText As C1TreeViewToolTipTextEventHandler
[C1Description("C1TreeView.ApplyNodeCellToolTipText", "Occurs before displaying tree node tooltip.")] [C1Category("Behavior")] public event C1TreeViewToolTipTextEventHandler ApplyNodeCellToolTipText
Event Data
The event handler receives an argument of type C1TreeViewToolTipTextEventArgs containing data related to this event. The following C1TreeViewToolTipTextEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
ColumnIndex | Gets the tree column index of TreeView control. |
Node | Gets the tree node that has been checked, expanded, collapsed, or selected. (Inherited from C1.Win.TreeView.C1TreeViewCancelEventArgs) |
ToolTipText | Gets or sets the text that appears when the mouse pointer hovers over a C1TreeNode. |
See Also