TcxTreeListNodeAttachMode Enum
Specifies the manner in which one node is attached to another.
Declaration
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