Skip to main content

HtmlEditorPlaceholdersSettings.StartMark Property

Gets or sets the character(s) displayed at the beginning of the placeholders.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("{")]
public string StartMark { get; set; }

Property Value

Type Default Description
String "{"

A string value that specifies the starting character(s) of the placeholders.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to StartMark
ASP.NET MVC Extensions HtmlEditorSettings
.SettingsPlaceholders .StartMark
ASP.NET Web Forms Controls ASPxHtmlEditor
.SettingsPlaceholders .StartMark

Remarks

By default, placeholders are surrounded with curly braces {}. Use the StartMark property to specify a custom character(s) that will be used as the beginning of the placeholder instead of default left curly brace ({). To specify which character(s) should be used instead of the right curly brace (}), use the HtmlEditorPlaceholdersSettings.EndMark property.

To replace placeholders with the required values, use the client-side ASPxClientHtmlEditor.ReplacePlaceholders or server-side ASPxHtmlEditor.ReplacePlaceholders method.

The collection of placeholders available for end-users is accessed by the ASPxHtmlEditor.Placeholders property.

Example

This example illustrates how to use the HtmlEditorPlaceholdersSettings.StartMark and HtmlEditorPlaceholdersSettings.EndMark properties to specify custom characters that will be displayed at the beginning and at the end of placeholders, respectively.

<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server">
    <SettingsPlaceholders StartMark="[%" EndMark="%]" />
    <Placeholders>
        <dx:HtmlEditorPlaceholderItem Value="FirstName" />
        <dx:HtmlEditorPlaceholderItem Value="Date" />
    </Placeholders>
</dx:ASPxHtmlEditor>

Start and End Marks

See Also