Skip to main content
A newer version of this page is available. .

NodeChangeTypeEnum Enum

Contains values indicating how the node has been changed.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.1.dll

Declaration

public enum NodeChangeTypeEnum

Members

Name Description
Expanded

The node’s TreeListNode.Expanded property has been changed.

HasChildren

The node’s TreeListNode.HasChildren property has been changed.

ImageIndex

The node’s TreeListNode.ImageIndex property has been changed.

SelectImageIndex

The node’s TreeListNode.SelectImageIndex property has been changed.

StateImageIndex

The node’s TreeListNode.StateImageIndex property has been changed.

Tag

The node’s TreeListNode.Tag property has been changed.

Add

A new node has been added to the Tree List’s TreeList.Nodes collection. This can be performed by calling the TreeListNodes.Add method.

Remove

A node has been removed from the Tree List’s TreeList.Nodes collection. This can be performed using the TreeListNodes.Remove method.

CheckedState

The node’s TreeListNode.Checked property has been changed.

User1

The corresponding user’s property has been changed.

User2

The corresponding user’s property has been changed.

User3

The corresponding user’s property has been changed.

Related API Members

The following properties accept/return NodeChangeTypeEnum values:

Remarks

Values listed by this enumeration are returned by the NodeChangedEventArgs.ChangeType property.

The following code snippets (auto-collected from DevExpress Examples) contain references to the NodeChangeTypeEnum enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also