Previous Document Next Document

Object Model Reference : Classes : D : Document : Properties : Document.Pages


Document.Pages

Property Pages As Pages

Description

Member of Document

The Pages property returns the Pages collection, which represents all pages in the document.

The Pages property returns a read-only value.

VBA example

The following VBA example creates black rectangles at the bottom of each page starting from the current page to the end of the document.

Sub Test()
 Dim idx As Long, i As Long
 Dim doc As Document
 Dim p As Page
 Dim s As Shape
 Set doc = ActiveDocument
 idx = doc.ActivePage.Index
 For i = idx To doc.Pages.Count
  Set p = doc.Pages(i)
  Set s = p.ActiveLayer.CreateRectangle(0, 0, p.SizeWidth, 0.5)
  s.Fill.UniformColor.CMYKAssign 0, 0, 0, 100
 Next i
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.