Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

HtmlEditorToolbarItemNames.InsertVariableField Property

Gets the Insert Variable Field item’s name.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
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:

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