Skip to main content
All docs
V25.1
  • RichEditRibbonGroupNames.ViewZoom Property

    Gets the name of the View tab’s Zoom group.

    Namespace: DevExpress.Blazor.RichEdit

    Assembly: DevExpress.Blazor.RichEdit.v25.1.dll

    NuGet Package: DevExpress.Blazor.RichEdit

    Declaration

    public static string ViewZoom { get; }

    Property Value

    Type Description
    String

    The “ViewZoom” string.

    Remarks

    The Zoom group is in the View tab. This group includes the Zoom Level item that allows users to change the document’s zoom level.

    RichEdit - View Zoom Group

    Use the ViewZoom property to perform the following operations:

    The following code snippet removes this group from the View tab:

    <DxRichEdit CustomizeRibbon="onCustomizeRibbon" />
    
    @code {
        void onCustomizeRibbon(IRibbon ribbon) {
            string tabName = RichEditRibbonTabNames.View;
            string groupName = RichEditRibbonGroupNames.ViewZoom;
            ribbon.Tabs[tabName].Groups.Remove(groupName);
        }
    }
    
    See Also