IsWizardPage Property
Returns True if the specified page is a Publisher wizard page. Read-only Boolean.
expression.IsWizardPage
expression Required. An expression that returns one of the objects in the Applies To list.
Remarks
Wizard pages are special page types for certain types of Publisher wizards (such as Newsletters, Catalogs, and Web Wizards) that can be inserted into a publication.
Use the Wizard property of the Page object to access the wizard for the specified page.
Example
The following example tests to determine whether the specified page is a wizard page. If it is, certain wizard properties are returned.
With ActiveDocument.Pages(1)
If .IsWizardPage = True Then
With .Wizard
Debug.Print .Name
Debug.Print .Properties(1).Name
Debug.Print .Properties(1).CurrentValueId
End With
End If
End With