TdxTreeNodeAttachMode Enum
In This Article
Enumerates node attachment modes.
#Declaration
Delphi
TdxTreeNodeAttachMode = (
namAdd,
namAddFirst,
namAddChild,
namAddChildFirst,
namInsert
);
#Members
Name | Description |
---|---|
nam
|
A method call appends a node at the same level as the target node. |
nam
|
A method call prepends a node at the same level as the target node. |
nam
|
A method call appends a node to the target node as a child. |
nam
|
A method call prepends a node to the target node as a child. |
nam
|
A method call inserts a node at the same level immediately before the target node. |
#Remarks
The following methods reference the TdxTreeNodeAttachMode type:
See Also