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

HtmlEditorPlaceholderCollection Class

A collection of placeholders available in the HtmlEditor.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

Declaration

public class HtmlEditorPlaceholderCollection :
    Collection<HtmlEditorPlaceholderItem>

The following members return HtmlEditorPlaceholderCollection objects:

Remarks

The HtmlEditor holds its placeholders (which can be replaced with the required values in the editor content) within a collection represented by an instance of the HtmlEditorPlaceholderCollection class. This collection can be accessed via the ASPxHtmlEditor.Placeholders property. The properties and methods exposed by the HtmlEditorPlaceholderCollection class can be used to perform common collection operations such as adding new or deleting existing placeholders. Each item of the collection is represented by a HtmlEditorPlaceholderItem object. Individual placeholders can be accessed using indexer notation.

See Also