Share via


WizardCatalogVisible Property.WizardCatalogVisible Property

Publisher Developer Reference

Returns or sets a Boolean indicating whether the Wizard Catalog is visible. Read/write.

Syntax

expression.WizardCatalogVisible

expression   A variable that represents a WizardCatalogVisible Property object.

Return Value
Boolean

Example

The following example stores the current state of the Wizard Catalog so that it can restore it later.

Visual Basic for Applications
  Sub WizardCatalogExample()
    Dim blnWizardCatalog As Boolean
' Store current state of Wizard Catalog.
blnWizardCatalog = Application.<strong>WizardCatalogVisible</strong>

' Code can run here that shows or hides the Wizard
' Catalog as necessary; the original setting
' will be restored at the end of the procedure.

' Restore original state of Wizard Catalog.
Application.<strong>WizardCatalogVisible</strong> = blnWizardCatalog

End Sub

See Also