WinForms › Tree View Combo Box › TreeViewEventArgs
TreeViewEventArgs
class.NET 6 / 8 / 10.NET Framework 4.8Binarymission.WinForms.Controls.ListControls.Shared
EventArgs derived class for supplying.returning event information for the AfterSelect event.
public class TreeViewEventArgs : EventArgs
Inherits from / implements: EventArgs
Members at a glance
TreeViewEventArgs | Constructs a new instance of TreeViewEventArgs class. |
SelectedNodeIndex | The currently selected node's index in the treeview contol that you are wrapping and implementing ISupportTreeView interface on. |
SelectedTreeNode | The currently selected node in the treeview control that you are wrapping and implementing ISupportTreeView interface on. |
Tag | Allows a custom object to be passed on to the AfterSelect event, so it can used there. |
Constructors
TreeViewEventArgs
public TreeViewEventArgs()
Constructs a new instance of TreeViewEventArgs class.
Properties
SelectedNodeIndex
public int SelectedNodeIndex
The currently selected node's index in the treeview contol that you are wrapping and implementing ISupportTreeView interface on.
SelectedTreeNode
public TreeNode SelectedTreeNode
The currently selected node in the treeview control that you are wrapping and implementing ISupportTreeView interface on.
Tag
public object Tag
Allows a custom object to be passed on to the AfterSelect event, so it can used there.