HPageBreaks Property
Returns an HPageBreaks collection that represents the horizontal page breaks on the sheet. Read-only.
For information about returning a single member of a collection, see Returning an Object from a Collection.
Remarks
Note There is a limit of 1026 horizontal page breaks per sheet.
Example
This example displays the number of full-screen and print-area horizontal page breaks.
For Each pb in Worksheets(1).HPageBreaks
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"