Application.ShowWizardCatalog Method (Publisher)
Displays the Publication Types catalog for the wizard of the specified type.
Version Information
Version Added: Publisher 2007
Syntax
expression .ShowWizardCatalog(Wizard)
expression A variable that represents an Application object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Wizard |
Optional |
PbWizard |
The type of wizard catalog to be displayed. |
Example
The following Microsoft Visual Basic for Applications (VBA) macro shows how to use the ShowWizardCatalog method to show the wizard catalog for brochures.
Public Sub ShowWizardCatalog_Example()
Application.ShowWizardCatalog (pbWizardBrochures)
End Sub