Returning an object from a collection (Publisher)

The Item method returns a single object from a collection.

The following example sets a variable to a Page object that represents the first page in the Pages collection.

Sub SetFirstPage() 
 Dim pgFirst As Page 
 Set pgFirst = ActiveDocument.Pages.Item(1) 
End Sub

The Item method is the default method for most collections, so you can write the same statement more concisely by omitting the Item keyword.

Sub SetFirstPage() 
 Dim pgFirst As Page 
 Set pgFirst = ActiveDocument.Pages(1) 
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.