Skip to main content
Version: 4.1

TreeView

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Displays a hierarchical collection of labeled items, each represented by a TreeNode.

public class TreeView : Control

Constructors

Instance member TreeView()

Initializes a new instance of the TreeView class.

Properties

Instance member BorderStyle

BorderStyle: Gets or sets the border style of the tree view control. (Default: Solid)

Instance member CheckBoxes

Boolean: Returns or sets whether check boxes are displayed next to the tree nodes in the tree view control. Tree nodes may override this property setting the CheckBox property. (Default: False)

Instance member HideNodeImages

Boolean: Returns or sets whether all the node images are hidden. Tree nodes may override this property setting the HideNodeImage property. (Default: False)

Instance member ImageIndex

Int32: Returns or sets the image-list index value of the default image that is displayed by the tree nodes. (Default: -1)

Throws:

Instance member ImageKey

String: Returns or sets the key of the default image for each node in the TreeView control when it is in an unselected state. (Default: "")

Instance member ImageList

ImageList: Returns or sets the ImageList that contains the Image objects that are used by the tree nodes. (Default: null)

Instance member Indent

Int32: Returns or sets the distance in pixels to indent each child tree node level. (Default: -1)

Throws:

Instance member ItemHeight

Int32: Gets or sets the height of each tree node in the tree view control. When the value is -1, uses the value set in the theme. (Default: -1)

Throws:

Instance member LabelEdit

Boolean: Returns or sets whether the label text of the tree nodes can be edited. (Default: False)

Instance member Nodes

TreeNodeCollection: Returns the collection of tree nodes that are assigned to the tree view control.

Instance member OpenedImageIndex

Int32: Returns or sets the image list index value of the image that is displayed when a TreeNode is expanded. (Default: -1)

Throws:

Instance member OpenedImageKey

String: Returns or sets the key of the default image shown when a TreeNode is expanded. (Default: "")

Instance member PathSeparator

String: Returns or sets the delimiter string that the tree node path uses. (Default: "\")

Instance member PrefetchItems

Int32: Returns or sets the number of items to prefetch outside of the visible area when VirtualScroll is set to true. The default is 0 (disabled). (Default: 0)

Instance member RightClickSelection

Boolean: Returns or sets whether the TreeNode under the pointer gets selected on a right click. (Default: False)

When the right click lands outside of a selected area the selection is not changed regardless of the value of RightClickSelection.

Instance member Scrollable

Boolean: Returns or sets whether the tree view control displays scroll bars when they are needed. (Default: True)

Instance member SelectedImageIndex

Int32: Returns or sets the image list index value of the image that is displayed when a TreeNode is selected. (Default: -1)

Throws:

Instance member SelectedImageKey

String: Returns or sets the key of the default image shown when a TreeNode is selected. (Default: "")

Instance member SelectedNode

TreeNode: Returns or sets the tree node that is currently selected in the tree view control.

Instance member SelectedNodes

TreeNode[]: Returns or sets the tree nodes that are currently selected in the tree view control. Use this property when the SelectionMode is MultiSimple or MultiExtended.

Instance member SelectionMode

SelectionMode: Returns or sets the method in which items are selected in the TreeView. (Default: One)

Instance member ShowNodeToolTips

Boolean: Returns or sets a value indicating ToolTips are shown when the mouse pointer hovers over a TreeNode. (Default: False)

Instance member ShowPlusMinus

Boolean: Returns or sets whether plus-sign (+) and minus-sign (-) buttons are displayed next to tree nodes that contain child tree nodes. (Default: True)

Instance member ShowRootLines

Boolean: Returns or sets whether the expand/collapse icon is displayed for the root nodes (the firs level nodes). (Default: True)

The name of this property is kept as-is for compatibility reasons. When set to true (default) it doesn't show any line next to the root nodes or any other node. It shows or hide the expand/collapse icon next to the root nodes.

Instance member Sorted

Boolean: Returns or sets whether the tree nodes in the tree view are sorted. (Default: False)

Instance member StateImageList

ImageList: Returns or sets the image list that is used to indicate the state of the TreeView and its nodes. (Default: null)

Instance member Tools

ComponentToolCollection: Returns the instance of ComponentToolCollection associated with this control.

Instance member TopNode

TreeNode: Returns or sets the first fully-visible tree node in the tree view control.

Instance member TreeViewNodeSorter

IComparer<TreeNode>: Returns or sets the implementation of IComparer to perform a custom sort of the TreeView nodes.

Instance member VirtualScroll

Boolean: Enables or disables virtual scrolling for the TreeView. When virtual scrolling is enabled, only the visible nodes are rendered in the browser allowing the TreeView to host virtually unlimited nodes without any performance loss. (Default: False)

When VirtualScroll is set to true, all the nodes must be of the same height, limiting the more flexible HTML rendering in the nodes available when VirtualScroll is off (default).

Setting the property PrefetchItems to a value greater than 0 allows the virtual view to prefetch the specified number of items outside of the visible area to enable smoother scrolling.

Methods

Instance member BeginUpdate()

This method has no effect on this control.

Instance member ClearSelected()

Unselects all nodes in the TreeView.

Instance member CollapseAll()

Collapses all the tree nodes.

Protected member Dispose(disposing)

Disposes the control.

ParameterTypeDescription
disposingBooleantrue when this method is called by the application rather than a finalizer.

Instance member EndUpdate()

This method has no effect on this control.

Instance member ExpandAll()

Expands all the tree nodes.

Instance member GetNodeCount(includeSubTrees)

Retrieves the number of tree nodes, optionally including those in all subtrees, assigned to the tree view control.

ParameterTypeDescription
includeSubTreesBooleantrue to count the TreeNode items that the subtrees contain; otherwise, false.

Returns: Int32. The number of tree nodes, optionally including those in all subtrees, assigned to the tree view control.

Instance member GetSelected(node)

Returns a value indicating whether the specified TreeNode is selected.

ParameterTypeDescription
nodeTreeNodeThe TreeNode to check.

Returns: Boolean. true if the specified TreeNode is currently selected in the TreeView; otherwise, false.

Throws:

Protected member OnAddReferences(items)

Returns a collection of referenced components or collection of components.

ParameterTypeDescription
itemsIList

Protected member OnAfterCheck(e)

Fires the AfterCheck event.

ParameterTypeDescription
eTreeViewEventArgsA TreeViewEventArgs that contains the event data.

Protected member OnAfterCollapse(e)

Fires the AfterCollapse event.

ParameterTypeDescription
eTreeViewEventArgsA TreeViewEventArgs that contains the event data.

Protected member OnAfterExpand(e)

Fires the AfterExpand event.

ParameterTypeDescription
eTreeViewEventArgsA TreeViewEventArgs that contains the event data.

Protected member OnAfterLabelEdit(e)

Fires the AfterLabelEdit event.

ParameterTypeDescription
eNodeLabelEditEventArgsA NodeLabelEditEventArgs that contains the event data.

Protected member OnAfterSelect(e)

Fires the AfterSelect event.

ParameterTypeDescription
eTreeViewEventArgsA TreeViewEventArgs that contains the event data.

Protected member OnBeforeCheck(e)

Fires the BeforeCheck event.

ParameterTypeDescription
eTreeViewCancelEventArgsA TreeViewCancelEventArgs that contains the event data.

Protected member OnBeforeCollapse(e)

Fires the BeforeCollapse event.

ParameterTypeDescription
eTreeViewCancelEventArgsA TreeViewCancelEventArgs that contains the event data.

Protected member OnBeforeExpand(e)

Fires the BeforeExpand event.

ParameterTypeDescription
eTreeViewCancelEventArgsA TreeViewCancelEventArgs that contains the event data.

Protected member OnBeforeLabelEdit(e)

Fires the BeforeLabelEdit event.

ParameterTypeDescription
eNodeLabelEditEventArgsA NodeLabelEditEventArgs that contains the event data.

Protected member OnBeforeSelect(e)

Fires the BeforeSelect event.

ParameterTypeDescription
eTreeViewCancelEventArgsA TreeViewCancelEventArgs that contains the event data.

Protected member OnCreateControl()

Creates and register this control and all its children.

Protected member OnItemDrag(e)

Deprecated memberDeprecated: This method is deprecated. Use OnNodeDrag instead. Fires the ItemDrag event.

ParameterTypeDescription
eItemDragEventArgsAn ItemDragEventArgs that contains the event data.

Protected member OnNodeDrag(e)

Fires the NodeDrag event.

ParameterTypeDescription
eTreeViewNodeDragEventArgsAn TreeViewNodeDragEventArgs that contains the event data.

Protected member OnNodeMouseClick(e)

Fires the NodeMouseClick event.

ParameterTypeDescription
eTreeNodeMouseClickEventArgsA TreeNodeMouseClickEventArgs that contains the event data.

Protected member OnNodeMouseDoubleClick(e)

Fires the NodeMouseDoubleClick event.

ParameterTypeDescription
eTreeNodeMouseClickEventArgsA TreeNodeMouseClickEventArgs that contains the event data.

Protected member OnNodeMouseHover(e)

Fires the NodeMouseHover event.

ParameterTypeDescription
eTreeNodeMouseHoverEventArgsThe TreeNodeMouseHoverEventArgs that contains the event data.

Protected member OnNodeMouseLeave(e)

Fires the NodeMouseLeave event.

ParameterTypeDescription
eTreeNodeMouseHoverEventArgsThe TreeNodeMouseHoverEventArgs that contains the event data.

Protected member OnToolClick(e)

Fires the ToolClick event.

ParameterTypeDescription
eToolClickEventArgsA ToolClickEventArgs that contains the event data.

Protected member OnWebEvent(e)

Processes the event from the client.

ParameterTypeDescription
eWisejEventArgsEvent arguments.

Protected member OnWebRender(config)

Renders the client component.

ParameterTypeDescription
configObjectDynamic configuration object.

Protected member OnWebUpdate(state)

Updates the client component using the state information.

ParameterTypeDescription
stateObjectDynamic state object.

Instance member SetSelected(node, selected)

Selects or clears the selection for the specified TreeNode in a TreeView.

ParameterTypeDescription
nodeTreeNodeThe TreeNode to select.
selectedBooleanTrue to select the specified TreeNode, otherwise false to deselect it.

Throws:

Instance member Sort()

Sorts the items in TreeView control.

Events

Instance member AfterCheck

TreeViewEventHandler Occurs after the tree node check box is checked.

Instance member AfterCollapse

TreeViewEventHandler Occurs after the tree node is collapsed.

Instance member AfterExpand

TreeViewEventHandler Occurs after the tree node is expanded.

Instance member AfterLabelEdit

NodeLabelEditEventHandler Occurs after the tree node label text is edited.

Instance member AfterSelect

TreeViewEventHandler Occurs after the tree node is selected.

Instance member BeforeCheck

TreeViewCancelEventHandler Occurs before the tree node check box is checked.

Instance member BeforeCollapse

TreeViewCancelEventHandler Occurs before the tree node is collapsed.

Instance member BeforeExpand

TreeViewCancelEventHandler Occurs before the tree node is expanded.

Instance member BeforeLabelEdit

NodeLabelEditEventHandler Occurs before the tree node label text is edited.

Instance member BeforeSelect

TreeViewCancelEventHandler Occurs before the tree node is selected.

Instance member ItemDrag

Deprecated memberDeprecated: This event is deprecated. Use NodeDrag instead. ItemDragEventHandler Fired when the user begins dragging a node.

Instance member NodeDrag

TreeViewNodeDragEventHandler Fired when the user begins dragging a node.

Instance member NodeMouseClick

TreeNodeMouseClickEventHandler Fired when the user clicks a TreeNode with the mouse.

Instance member NodeMouseDoubleClick

TreeNodeMouseClickEventHandler Fired when the user double-clicks a TreeNode with the mouse.

Instance member NodeMouseHover

TreeNodeMouseHoverEventHandler Fired when the mouse hovers over a TreeNode.

Instance member NodeMouseLeave

TreeNodeMouseHoverEventHandler Fired when the mouse leaves the TreeNode.

Instance member ToolClick

ToolClickEventHandler Fired when a ComponentTool is clicked.

Implements

NameDescription
IUserDataProvides access to the UserData and Tag properties associated to the component implementing this interface.
IBindableComponentBindable components implement this interface.
IDropTargetControls that support drag & drop operations implement this interface.
IWisejComponentAll wisej components implement this interface.
IWisejControlAll wisej controls derived from the Control class must implement this interface.
IWisejSerializableAllows an object to serialize itself.