Skip to main content

ASPxHtmlEditor.SettingsPlaceholders Property

Provides access to the placeholders settings for the ASPxHtmlEditor.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

NuGet Package: DevExpress.Web

Declaration

public HtmlEditorPlaceholdersSettings SettingsPlaceholders { get; }

Property Value

Type Description
HtmlEditorPlaceholdersSettings

A HtmlEditorPlaceholdersSettings object that contains placeholders settings.

Remarks

The following example illustrates how to specify custom characters for placeholders (Placeholders) instead of default curly braces {}:

<dx:ASPxHtmlEditor runat="server" ID="DemoHtmlEditor" >
    <SettingsPlaceholders StartMark="[" EndMark="]" />
</dx:ASPxHtmlEditor>
See Also