Share via


Document.Pages Property

Publisher Developer ReferencePublisher Developer Reference

Returns a Pages collection representing all the pages in the specified publication.

Syntax

expression.Pages

expression   A variable that represents a Document object.

Example

The following example returns the Pages collection of the active publication and reports how many pages there are.

Visual Basic for Applications
  Dim pgsTemp As Pages

Set pgsTemp = ActiveDocument.Pages

With pgsTemp MsgBox "There are " & .Count _ & " page(s) in the active publication." End With

See Also