Skip to main content

NodeChangeType Enum

In This Article

Lists values that indicate how a node has been changed.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.dll

#Declaration

public enum NodeChangeType

#Members

Name Description
Add

A new node has been added to the collection of nodes (TreeListView.Nodes, TreeListNode.Nodes).

Remove

A node has been removed from the collection of nodes (TreeListView.Nodes, TreeListNode.Nodes).

Expand

A node has been expanded or collapsed (the TreeListNode.IsExpanded property has been changed).

Content

A node's content has been modified (the TreeListNode.Content property has been changed).

ExpandButtonVisibility

The button used to expand/collapse a node has been shown or hidden. The expand button is not displayed within a node if the node does not have child nodes (its TreeListNode.Nodes collection is empty).

Image

A node's image specified by the TreeListNode.Image property, has been changed.

CheckBox

A node's checkbox state has been changed.

IsCheckBoxEnabled

The node checkbox has been shown or hidden. The TreeListView.ShowCheckboxes property specifies the visibility of node checkboxes.

See Also