Applies To
Range Object.
Description
Returns or sets the location of a page break (one of xlNone, xlManual, or xlAutomatic). Read-write.
Remarks
This property can return the location of either automatic or manual page breaks, but it can only set the location of manual breaks (it can only be set to xlManual or xlNone).
To remove all manual page breaks on a worksheet, set Cells.PageBreak to xlNone.
Example
This example sets a manual page break above row 25 on Sheet1.
Worksheets("Sheet1").Rows(25).PageBreak = xlManual
This example sets a manual page break to the left of column J on Sheet1.
Worksheets("Sheet1").Columns("J").PageBreak = xlManual
This example deletes the two page breaks that were set in the previous examples.
Worksheets("Sheet1").Rows(25).PageBreak = xlNone Worksheets("Sheet1").Columns("J").PageBreak = xlNone