Back to Devexpress

TcxTreeListNodeAttachMode Enum

vcl-cxtl-92959c94.md

latest1.4 KB
Original Source

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:

ValueDescription
tlamAddAdds a node at the same level as the existing node and makes the new node last.
tlamAddFirstAdds a node at the same level as the existing node and makes the new node first.
tlamAddChildAdds a child node to the existing node and makes the new node last.
tlamAddChildFirstAdds a child node to the existing node and makes the new node first.
tlamInsertInserts a node at the same level just before the existing node.

See Also

TcxCustomTreeList.AddNode

TcxCustomTreeList.OnMoveTo

TcxTreeListNode.CanMove

TcxTreeListNode.MoveTo

cxTL Unit