Page Object

Excel Developer Reference

Represents a page in a workbook. Use the PageSetup object and the related methods and properties for programmatically defining page layout in a workbook.

Version Information
 Version Added:  Excel 2007

Remarks

Use the Item method to access a specific page in a workbook. The following example accesses the first page in the active workbook.

Visual Basic for Applications
  Dim objPage As Page

Set objPage = ActiveWorkbook.ActiveWindow _ .Panes(1).Pages.Item(1)

See Also