Back to Devexpress

HtmlEditorToolbarItemNames.InsertVariableField Property

blazor-devexpress-dot-blazor-dot-htmleditortoolbaritemnames.md

latest2.2 KB
Original Source

HtmlEditorToolbarItemNames.InsertVariableField Property

Gets the Insert Variable Field item’s name.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public static string InsertVariableField { get; }

Property Value

TypeDescription
String

The “InsertVariableField” string.

|

Remarks

Use this property to perform the following operations with the Insert Variable Field item:

The Insert Variable Field item is a drop-down editor in the toolbar’s Variable group. This drop-down editor allows users to insert a variable to a document.

The following code snippet adds the Insert Variable Field item to the toolbar’s Insert Element:

razor
<DxHtmlEditor Width="700px"
              Height="500px"
              CustomizeToolbar="@OnCustomizeToolbar"/>

@code {
    void OnCustomizeToolbar(IToolbar toolbar) {
        IBarGroup insertGroup = toolbar.Groups[HtmlEditorToolbarGroupNames.InsertElement];
        insertGroup.Items.Add(HtmlEditorToolbarItemNames.InsertVariableField);
    }
}

See Also

HtmlEditorToolbarItemNames Class

HtmlEditorToolbarItemNames Members

DevExpress.Blazor Namespace