Skip to content

ShowRibbonQuickAccessPage Property

Description

Hides/Un-Hides the Ribbon Quick Access page of the Customization dialog.

Property Type

Read-write property

Syntax (Visual Basic)

Public Property ShowRibbonQuickAccessPage() As Boolean

Remarks

The Ribbon Quick Access page allows items to be added or removed from the Ribbon's quick access bar. The quick access bar can also be displayed at the top or bottom of the Ribbon using this page.

The Customization dialog is accessible by the user when they right-click on the toolbar and select "Customize..." or select "Customize..." from the drop-down at the end of the toolbar. The options pages allow users to change settings such as menu animation and large icons.

The "Customize" dialog can also be displayed using the ShowCustomizeDialog method.

Example

ShowRibbonQuickAccessPage Sample (Visual Basic)

This sample illustrates how to hide/show the Ribbon Quick Access tab in the customization dialog box.

Private Sub CommandBars_Customization(ByVal Options As XtremeCommandBars.ICustomizeOptions)

    '==========================================================================================================
    ' Choose which pages to display in the customization dialog
    '==========================================================================================================

    ' Do not show the KeyBoard page in the customization dialog
    Options.ShowKeyboardPage = False

    ' Do not show the Options page in the customization dialog
    Options.ShowOptionsPage = False

    ' Display the Ribbon Quick Access page in the customization dialog
    Options.ShowRibbonQuickAccessPage = True

End Sub

See Also


Copyright (c) 1998-2024 Codejock Technologies. All rights reserved.