Application.WizardCatalogVisible 属性 (Publisher)

返回或设置一个 boolean 类型的值 ,该值指示向导目录中是否可见。 读/写。

语法

表达式WizardCatalogVisible

expression:表示 Application 对象的变量。

返回值

布尔值

示例

以下示例存储“向导目录”的当前状态,以便以后可以恢复。

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

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。