Skip to main content
A newer version of this page is available. .

ASPxHtmlEditor.SettingsPlaceholders Property

Provides access to the placeholders settings for the ASPxHtmlEditor.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

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