Skip to main content

HtmlEditorVariablesBuilder.EscapeChar(IEnumerable<String>) Method

Specifies the special character(s) that should surround the variables. Mirrors the client-side escapeChar option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public HtmlEditorVariablesBuilder EscapeChar(
    IEnumerable<string> value
)

Parameters

Name Type Description
value IEnumerable<String>

The option value.

Returns

Type Description
HtmlEditorVariablesBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().HtmlEditor()
    .Variables(variables => variables
        .EscapeChar(new[] { "{", "}" })
    )
)
See Also