aspnet-devexpress-dot-web-dot-aspxwebcontrol-1e66d4c7.md
Gets or sets whether accessibility support is globally enabled for all DevExpress web controls across the web page or the entire web site.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public static bool GlobalAccessibilityCompliant { get; set; }
Public Shared Property GlobalAccessibilityCompliant As Boolean
| Type | Description |
|---|---|
| Boolean |
true, if accessibility support is enabled; otherwise, false.
|
Use the GlobalAccessibilityCompliant property to specify whether accessibility support is globally enabled for all DevExpress web controls across the web page or the entire web site. If the GlobalAccessibilityCompliant property is not specified, it returns the accessibilityCompliant Web.config option value.
Depending on your application needs, you can use the GlobalAccessibilityCompliant property at different levels within your application. The main requirement is that the property should be explicitly assigned on executing each request.
Page Level
Application Level - in Global.asax
See Also