Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: sheet ::

interface XSheetPageBreak

Base Interface
com::sun::star::uno::XInterface

[ DEPRECATED ]
Description
provides access to page breaks in a sheet.


Known Services which Export this Interface

com::sun::star::sheet::Spreadsheet a 2-dimensional sheet of cells.

Methods' Summary

getColumnPageBreaks returns a sequence of descriptions of all horizontal page breaks on the sheet.
getRowPageBreaks returns a sequence of descriptions of all vertical page breaks on the sheet.
removeAllManualPageBreaks removes all manual page breaks on the sheet.

Methods' Details

getColumnPageBreaks
 
sequence< com::sun::star::sheet::TablePageBreakData >
getColumnPageBreaks();
Description
returns a sequence of descriptions of all horizontal page breaks on the sheet.

This includes manual and automatic page breaks. To add or remove manual breaks, use the TableColumn::IsStartOfNewPage property of the column.

getRowPageBreaks
 
sequence< com::sun::star::sheet::TablePageBreakData >
getRowPageBreaks();
Description
returns a sequence of descriptions of all vertical page breaks on the sheet.

This includes manual and automatic page breaks.

To add or remove manual breaks, use the TableRow::IsStartOfNewPage property of the row.

removeAllManualPageBreaks
 
void
removeAllManualPageBreaks();
Description
removes all manual page breaks on the sheet.

Top of Page