[Overview][Constants][Types][Classes][Procedures and functions][Index] |
TAddMode - enumerated type containing a series of constants to determine the place where a node should be placed in a tree.
Source position: comctrls.pp line 1960
type TAddMode = ( |
||
taAddFirst, |
|
|
taAdd, |
|
|
taInsert |
|
|
); |
This sets consist of three values:
taAdd: Adds the node as the last child.
taAddFirst: Adds the node as the first child.
taInsert: Adds the node in front another node.
This set is used in TTreeNode.InternalMove and TTreeNodes.InternalAddObject
lazarus-ccr.sourceforge.net |