Skip to main content

MVCxHtmlEditorImageSelectorSettings.DownloadCallbackRouteValues Property

Specifies the Html Editor’s label text for a screen reader.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public object DownloadCallbackRouteValues { get; set; }

Property Value

Type Description
Object

The text.

Property Paths

You can access this nested property as listed below:

Object Type Path to DownloadCallbackRouteValues
MVCxHtmlEditorInsertImageDialogSettings
.SettingsImageSelector .DownloadCallbackRouteValues

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