ShapeRange.ID property (Publisher)
Returns a Long that represents the type of a shape, range of shapes, or property, type, or value of a wizard. Read-only.
Syntax
expression.ID
expression A variable that represents a ShapeRange object.
Example
This example displays the type for each shape on the first page of the active publication.
Sub ShapeID()
Dim shp As Shape
For Each shp In ActiveDocument.Pages(1).Shapes
MsgBox shp.ID
Next shp
End Sub
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.