WizardProperties Collection [Publisher 2003 VBA Language Reference]

Wizard
WizardProperties
WizardProperty
WizardValues

Represents the settings available in a publication design or in a Design Gallery object's wizard.

Using the WizardProperties collection

Use the Properties property with a Wizard object to return a WizardProperties collection. The following example reports on the publication design associated with the active publication, displaying its name and current settings.

Dim wizTemp As Wizard
Dim wizproTemp As WizardProperty
Dim wizproAll As WizardProperties

Set wizTemp = ActiveDocument.Wizard

With wizTemp
    Set wizproAll = .Properties
    MsgBox "Publication Design associated with " _
        & "current publication: " .Name
    For Each wizproTemp In wizproAll
        With wizproTemp
            Debug.Print "   Wizard property: " _
                & .Name & " = " & .CurrentValueId
        End With
    Next wizproTemp
End With

Note  Depending on the language version of Publisher that you are using, you may receive an error when using the above code. If this occurs, you will need to build in error handlers to circumvent the errors. For more information, see Wizard Object .

Properties | Application Property | Count Property | Item Property | Parent Property

Methods | FindPropertyById Method

Parent Objects | Wizard

Child Objects | WizardValues