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 支援與意見反應。