blazor-devexpress-dot-blazor-dot-htmleditortoolbaritemnames.md
Gets the Insert Variable Field item’s name.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public static string InsertVariableField { get; }
| Type | Description |
|---|---|
| String |
The “InsertVariableField” string.
|
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
HtmlEditorToolbarItemNames Class