TdxGridTableViewAutomationSettings.OnInitializeRowProperties Event
Allows you to initialize UIA node properties manually for individual grid Table View rows.
Declaration
property OnInitializeRowProperties: TdxGridInitializeRowAutomationPropertiesEvent read; write;
Remarks
You can handle the OnInitializeProperties event to initialize individual UI automation node properties for individual grid Table View rows.
Event Occurrence
The OnInitializeRowProperties event occurs in response to the first UIA node property request for a data row in a grid Table View. If any property value of the same node changes after initialization, the OnInitializeRowProperties event occurs again in response to the next UIA node property request.
Event Parameters
The following parameters are available within an OnInitializeRowProperties event handler:
ARow- Provides access to the grid data row that raised the
OnInitializeRowPropertiesevent. APropertiesProvides access to the list of initialized UIA node properties for the grid data row accessible through the
ARowparameter.You can use
AProperties.Name andAProperties.FullDescription properties to modify corresponding UIA node properties for the processed grid data row (ARow).
Refer to the TdxGridInitializeRowAutomationPropertiesEvent procedural type description for detailed information on all parameters accessible within an OnInitializeRowProperties event handler.