Skip to main content
All docs
V23.2

WindowsFormsSettings.UseUIAutomation Property

Gets or sets whether DevExpress controls should use legacy Microsoft Active Accessibility (MSAA) or UIAutomation. See this link for more information on both technologies: Microsoft Active Accessibility and UI Automation Compared.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public static DefaultBoolean UseUIAutomation { get; set; }

Property Value

Type Description
DefaultBoolean

true if DevExpress controls should use UIAutomation patterns; otherwise, false.

Available values:

Name Description Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

Remarks

When the UseUIAutomation property is set to DefaultBoolean.True, most commonly-used DevExpress controls support UIAutomation patterns recommended by Microsoft (see this topic for more details: Control Types and Their Supported Control Patterns).

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the UseUIAutomation property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also