TcxTreeListGetEditPropertiesEvent Type
The procedural type for in-place editor setting retrieval events in a Tree List control.
Declaration
TcxTreeListGetEditPropertiesEvent = procedure(Sender: TcxTreeListColumn; ANode: TcxTreeListNode; var EditProperties: TcxCustomEditProperties) of object;
Parameters
Name | Type | Description |
---|---|---|
Sender | TcxTreeListColumn | Provides access to the tree list column that raised the current editor setting retrieval event. The Tip To identify the actual tree list column type, call the |
ANode | TcxTreeListNode | Provides access to the currently processed tree list node. For example, you can use |
EditProperties | TcxCustomEditProperties | Specifies in-place editor settings for the currently processed data cell in the column and node accessible through You can use the To identify the actual editor settings class, call the Important Do not change individual in-place editor settings accessible through the |
Remarks
Editor setting retrieval events occur when a Tree List control is about to determine the required editor for a data cell. You can handle these events to change in-place editors in columns based on custom conditions.
TcxTreeListGetEditPropertiesEvent Type References
OnGetEditProperties and OnGetEditingProperties events of a tree list column reference the TcxTreeListGetEditPropertiesEvent
procedural type.