Skip to content

ShowOptionsPage Property

Description

Hides/Un-Hides the Options page of the Customization dialog.

Property Type

Read-write property

Syntax (Visual Basic)

Public Property ShowOptionsPage() As Boolean

Remarks

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.

Example

This sample illustrates how to hide/show the Options 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

End Sub

See Also


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