vcl-cxtl-92959c94.md
Specifies the manner in which one node is attached to another.
TcxTreeListNodeAttachMode = (
tlamAdd,
tlamAddFirst,
tlamAddChild,
tlamAddChildFirst,
tlamInsert
);
| Name |
|---|
tlamAdd |
tlamAddFirst |
tlamAddChild |
tlamAddChildFirst |
tlamInsert |
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