Previous Document Next Document
Pages.Count

Property Count As Long

Member of Pages

The Count property returns the number of pages in the document.

The Count property returns a read-only value.

The following code example returns a message if the document contains only one page:

Sub Test() 
 Dim ret As VbMsgBoxResult 
 If ActiveDocument.Pages.Count = 1 Then 
  ret = MsgBox("Document contains only 1 page. Do you want to 
continue?", vbYesNo) 
  If ret = vbNo Then Exit Sub 
 End If 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.