Skip to main content
All docs
V24.1

HtmlEditorToolbarItemNames.InsertVariableField Property

Gets the Insert Variable Field item’s name.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

public static string InsertVariableField { get; }

Property Value

Type Description
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:

<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