TdxDBTreeView.Options Property
Specifies Tree View control behavior settings.
Declaration
property Options: TdxDBTreeViewOptions read; write; default [];
Property Value
| Type | Description |
|---|---|
| TdxDBTreeViewOptions | The set of Tree View control behavior flags. |
Remarks
You can include the following flags in the Options property value in any combination:
| Value | Description |
|---|---|
trDBCanDelete |
The Delete key deletes the focused node. |
trDBConfirmDelete |
Displays a confirmation message box when a user presses the Delete key. This flag has no effect without trDBCanDelete. |
trCanDBNavigate |
The selected tree node changes according to the selected record in the underlying dataset. |
trSmartRecordLoad |
Smart record loading is active. |
trSmartRecordCopy |
Copies associated data in the dataset on drag & drop operations. |
trCheckHasChildren |
Checks whether a tree node includes children. This flag has no effect without trSmartRecordLoad. |
See Also