Поделиться через


Application.WizardCatalogVisible Property (Publisher)

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

Syntax

expression .WizardCatalogVisible

expression A variable that represents a Application object.

Return Value

Boolean

Example

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

Sub WizardCatalogExample() 
 Dim blnWizardCatalog As Boolean 
 
 ' Store current state of Wizard Catalog. 
 blnWizardCatalog = Application.WizardCatalogVisible 
 
 ' 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.WizardCatalogVisible = blnWizardCatalog 
End Sub

See Also

Concepts

Application Object Members

Application Object