TcxVerticalGridGetEditPropertiesEvent Type
The procedural type for in-place editor setting retrieval events in a Vertical Grid control.
Declaration
TcxVerticalGridGetEditPropertiesEvent = procedure(Sender: TcxCustomEditorRowProperties; ARecordIndex: Integer; var AProperties: TcxCustomEditProperties) of object;
Parameters
Name | Type | Description |
---|---|---|
Sender | TcxCustomEditorRowProperties | Provides access to settings of the vertical grid row that raised the current editor setting retrieval event. To access all public API members of a vertical grid row settings class, cast the
Tip To identify the vertical grid row settings type, call the |
ARecordIndex | Integer | Returns the record index of the currently processed data cell. |
AProperties | TcxCustomEditProperties | Specifies in-place editor settings for the currently processed data cell in the vertical grid row and record identified by 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 Vertical Grid control is about to determine the required editor for a data cell. You can handle these events to change in-place editors in rows based on custom conditions.
TcxVerticalGridGetEditPropertiesEvent Type References
OnGetEditProperties and OnGetEditingProperties events of a vertical grid row reference the TcxVerticalGridGetEditPropertiesEvent
procedural type.