TcxGridGetPropertiesEvent Type
The procedural type for in-place editor setting retrieval events in the Data Grid control.
Declaration
TcxGridGetPropertiesEvent = procedure(Sender: TcxCustomGridTableItem; ARecord: TcxCustomGridRecord; var AProperties: TcxCustomEditProperties) of object;
Parameters
Name | Type | Description |
---|---|---|
Sender | TcxCustomGridTableItem | Provides access to the grid table item that raised the current editor setting retrieval event. To access all public API members of a grid table item, cast the
Tip To identify the grid table item type, call the |
ARecord | TcxCustomGridRecord | Provides access to the currently processed record. For example, you can use the |
AProperties | TcxCustomEditProperties | Specifies in-place editor settings for the currently processed data cell in the table item and record 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 grid View is about to determine the required editor for a data cell. You can handle these events to change in-place editors in data items depending on custom conditions.
TcxGridGetPropertiesEvent Type References
OnGetProperties and OnGetPropertiesForEdit events of a grid table item reference the TcxGridGetPropertiesEvent
procedural type.