Share via


ID Property [Publisher 2003 VBA Language Reference]

Returns a Long that represents the type of a shape, range of shapes, or property, type, or value of a wizard. Read-only.

expression.ID

expression Required. An expression that returns one of the above objects.

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

Applies to | Shape Object | ShapeRange Collection | Wizard Object | WizardProperty Object | WizardValue Object