Shape.WizardTag property (Publisher)

Returns or sets a PbWizardTag constant indicating the function of a specified shape with respect to its publication design. Read/write.

Syntax

expression.WizardTag

expression A variable that represents a Shape object.

Remarks

The WizardTag property value can be one of the PbWizardTag constants declared in the Microsoft Publisher type library.

The combination of the WizardTagInstance property and the WizardTag property uniquely defines every shape in a publication.

Example

The following example displays the wizard tag and wizard tag instance information for all the shapes on page one of the active publication.

Dim shpLoop As Shape 
 
For Each shpLoop In ActiveDocument.Pages(1).Shapes 
 With shpLoop 
 Debug.Print "Shape: " & .Name 
 Debug.Print " Wizard tag: " & .WizardTag 
 Debug.Print " Wizard tag instance: " _ 
 & .WizardTagInstance 
 End With 
Next shpLoop

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.