MVCxHtmlEditorImageSelectorSettings.DownloadCallbackRouteValues Property
Specifies the Html Editor’s label text for a screen reader.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Property Value
Type | Description |
---|---|
Object | The text. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to DownloadCallbackRouteValues |
---|---|
MVCxHtmlEditorInsertImageDialogSettings |
|
Remarks
The AccessibilityLabelText property allows you to specify the aria-label attribute of the Html Editor is in accessibility mode (the AccessibilityCompliant property is set to true).
@Html.DevExpress().HtmlEditor(
settings => {
...
settings.Properties.AccessibilityLabelText = "text for a screen reader";
}).GetHtml()
See Also