Share via


Plates.Item Property

Publisher Developer Reference

Returns an individual object from a specified collection. Read-only.

Syntax

expression.Item(Index)

expression   A variable that represents a Plates object.

Parameters

Name Required/Optional Data Type Description
Index Required Long The number of the object to return.

Example

This example displays the name of the first color plate in the active publication.

Visual Basic for Applications
  MsgBox "Name of first color plate: " _
    & ActiveDocument.Plates.Item(1).Name

See Also