Freigeben über


Application.WizardCatalogVisible-Eigenschaft (Publisher)

Zurückgeben oder Festlegen einer vom Typ Boolean zurück, der angibt, ob der Assistenten-Katalog sichtbar ist. Lese-/Schreibzugriff.

Syntax

Ausdruck. WizardCatalogVisible

expression Eine Variable, die ein Application-Objekt darstellt.

Rückgabewert

Boolesch

Beispiel

Im folgenden Beispiel wird der aktuelle Zustand des Assistenten-Katalogs gespeichert, damit er später wiederhergestellt werden kann.

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

Support und Feedback

Haben Sie Fragen oder Feedback zu Office VBA oder zu dieser Dokumentation? Unter Office VBA-Support und Feedback finden Sie Hilfestellung zu den Möglichkeiten, wie Sie Support erhalten und Feedback abgeben können.