Skip to main content

TcxTreeListOptionsData.Inserting Property

Specifies if end-users can insert or append new nodes.

Declaration

property Inserting: Boolean read; write; default False;

Property Value

Type Default
Boolean False

Remarks

Set this property to True to allow end-users to:

  • Press the Ins key or click the Insert button provided by the embedded navigator or a navigator component (TcxNavigator or TcxDBNavigator) linked to the TreeList control to insert a node as a sibling before the focused node. These end-user actions initialize the inserted node’s ParentKeyValue property with the focused node’s ParentKeyValue property value.

  • Press the Ctrl+Ins key combination or click the navigator’s Append button to append a node as the last child of the focused node. These end-user actions initialize the appended node’s ParentKeyValue property with the focused node’s KeyValue property value.

A value set to the Inserting property replaces the Appending property value.

The default value of the Inserting property is False.

See Also