Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxTreeListOptionsData.Inserting Property

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

#Declaration

Delphi
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