Skip to main content

RichEditBarItemNames.UpdateAllFields Property

Gets the Update All Fields item’s name.

Namespace: DevExpress.Blazor.RichEdit

Assembly: DevExpress.Blazor.RichEdit.v23.2.dll

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string UpdateAllFields { get; }

Property Value

Type Description
String

The “UpdateAllFields” string.

Remarks

Use this property to perform the following operations:

The Update All Fields item is a button in the View group. This button updates every field in an open document.

The example below demonstrates how to remove the Update All Fields item from the ribbon:

<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        string tabName = RichEditRibbonTabNames.MailMerge;
        string groupName = RichEditRibbonGroupNames.MailMergeView;
        string itemName = RichEditBarItemNames.UpdateAllFields;
        ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
    }
}
See Also