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

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

interface XPrintAreas

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

[ DEPRECATED ]
Description
represents a sheet which has print areas.


Methods' Summary

getPrintAreas returns the print areas of the sheet.
setPrintAreas sets the print areas of the sheet.
getPrintTitleColumns returns true if the title columns are repeated on all subsequent print pages to the right.
setPrintTitleColumns specifies if the title columns are repeated on all subsequent print pages to the right.
getTitleColumns returns the range of columns which are marked as title columns.
setTitleColumns sets the range of columns marked as title columns.
getPrintTitleRows returns true if the title rows are repeated on all subsequent print pages to the bottom.
setPrintTitleRows specifies if the title rows are repeated on all subsequent print pages to the bottom.
getTitleRows returns the range of rows which are marked as title rows.
setTitleRows sets the range of rows marked as title rows.

Methods' Details

getPrintAreas
 
sequence< com::sun::star::table::CellRangeAddress >
getPrintAreas();
Description
returns the print areas of the sheet.
setPrintAreas
 
void
setPrintAreas(
[ in ] sequence< com::sun::star::table::CellRangeAddress > aPrintAreas );

Description
sets the print areas of the sheet.

If none of the sheets in a document have print areas, the whole sheets are printed.

getPrintTitleColumns
 
boolean
getPrintTitleColumns();
Description
returns true if the title columns are repeated on all subsequent print pages to the right.
setPrintTitleColumns
 
void
setPrintTitleColumns(
[ in ] boolean bPrintTitleColumns );

Description
specifies if the title columns are repeated on all subsequent print pages to the right.
getTitleColumns
 
com::sun::star::table::CellRangeAddress
getTitleColumns();
Description
returns the range of columns which are marked as title columns.

Title columns can be automatically repeated on all subsequent print pages to the right.

setTitleColumns
 
void
setTitleColumns(
[ in ] com::sun::star::table::CellRangeAddress aTitleColumns );

Description
sets the range of columns marked as title columns.

The rows of the CellRangeAddress are ignored.

Title columns can be automatically repeated on all subsequent print pages to the right.

getPrintTitleRows
 
boolean
getPrintTitleRows();
Description
returns true if the title rows are repeated on all subsequent print pages to the bottom.
setPrintTitleRows
 
void
setPrintTitleRows(
[ in ] boolean bPrintTitleRows );

Description
specifies if the title rows are repeated on all subsequent print pages to the bottom.
getTitleRows
 
com::sun::star::table::CellRangeAddress
getTitleRows();
Description
returns the range of rows which are marked as title rows.

Title rows can be automatically repeated on all subsequent print pages to the bottom.

setTitleRows
 
void
setTitleRows(
[ in ] com::sun::star::table::CellRangeAddress aTitleRows );

Description
sets the range of rows marked as title rows.

The columns of the CellRangeAddress are ignored.

Title rows can be automatically repeated on all subsequent print pages to the bottom.


Top of Page