VPageBreaks Property

Applies To

Charts collection object, Sheets collection object, Worksheet object, Worksheets collection object.

Description

Returns a VPageBreaks collection that represents the vertical page breaks on the sheet. Read-only.

See Also

HPageBreaks property.

Example

This example displays the total number of full-screen and print-area vertical page breaks.

For Each pb in Worksheets(1).VPageBreaks
    If pb.Extent = xlPageBreakFull Then
        cFull = cFull + 1
    Else
        cPartial = cPartial + 1
    End If
Next
MsgBox cFull & " full-screen page breaks, " & cPartial & _
    " print-area page breaks"