Skip to main content
All docs
V26.1
  • TdxStatusBarSimplePanelStyle.Automation Property

    Provides access to UI Automation and accessibility-related settings.

    Declaration

    property Automation: TdxAutomationElementSettings read; write;

    Property Value

    Type Description
    TdxAutomationElementSettings

    Stores UI Automation tree node settings.

    Remarks

    The parent status bar control maps the simple panel to a node in the UI Automation tree when the Active property is set to True, and the global UI Automation flag (dxUIAutomationEnabled) is enabled.

    Use the Automation property to configure the UIA node that corresponds to the simple panel.

    Available Options

    The Text property value serves as the default name for the corresponding node in the UI Automation tree. You can use the Automation.Name property to specify a different name for the UIA node associated with the panel and retain the current label in the UI.

    In addition, you can use the Automation.Description property to add optional information to clarify the panel purpose for users who rely on third-party assistive tools (such as Microsoft Narrator).

    Refer to the TdxAutomationElementSettings class description for detailed information and code examples.

    See Also