Skip to main content

GridControl.DisableAccessibility Property

Gets or sets whether the Grid Control’s accessibility feature (providing information on the control’s data to accessibility tools, e.g., MS Narrator) is disabled. This is a static property, and thus it affects all Grid Controls in your application.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public static bool DisableAccessibility { get; set; }

Property Value

Type Description
Boolean

true if the Grid Control’s accessibility feature is disabled; otherwise, false.

Remarks

Use the static WindowsFormsSettings.DisableAccessibility property to disable the accessibility features for all DevExpress WinForms controls.

See Also