VPageBreaks Object

Excel Developer Reference

A collection of vertical page breaks within the print area.

Remarks

Each vertical page break is represented by a VPageBreak object.

When the Application property, Count property, Creator property, Item property, Parent property or Add method is used in conjunction with the VPageBreaks property:

  • For an automatic print area, the VPageBreaks property applies only to the page breaks within the print area.
  • For a user-defined print area of the same range, the VPageBreaks property applies to all of the page breaks.

Example

Use the VPageBreaks property to return the VPageBreaks collection. Use the Add method to add a vertical page break.

If you add a page break that does not intersect the print area, then the newly-added VPageBreak object will not appear in the VPageBreaks collection for the print area. The contents of the collection may change if the print area is resized or redefined.

The following example adds a vertical page break to the left of the active cell.

Visual Basic for Applications
  ActiveSheet.VPageBreaks.Add Before:=ActiveCell

See Also