Unit 'ComCtrls' Package
[Overview][Constants][Types][Classes][Procedures and functions][Index] [#lcl]

TAddMode

TAddMode - enumerated type containing a series of constants to determine the place where a node should be placed in a tree.

Declaration

Source position: comctrls.pp line 2862

type TAddMode = (

  taAddFirst,

  

Adds the node as the first child.

  taAdd,

  

Adds the node as the last child.

  taInsert

  

Adds the node in front another node.

);

Description

This set is used in TTreeNode.InternalMove and TTreeNodes.InternalAddObject.