Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxTreeListNodeAttachMode Enum

Specifies the manner in which one node is attached to another.

#Declaration

Delphi
TcxTreeListNodeAttachMode = (
    tlamAdd,
    tlamAddFirst,
    tlamAddChild,
    tlamAddChildFirst,
    tlamInsert
);

#Members

Name
tlamAdd
tlamAddFirst
tlamAddChild
tlamAddChildFirst
tlamInsert

#Remarks

Options include:

Value Description
tlamAdd Adds a node at the same level as the existing node and makes the new node last.
tlamAddFirst Adds a node at the same level as the existing node and makes the new node first.
tlamAddChild Adds a child node to the existing node and makes the new node last.
tlamAddChildFirst Adds a child node to the existing node and makes the new node first.
tlamInsert Inserts a node at the same level just before the existing node.
See Also