interface XPrintAreas in module com::sun::star::sheet::

(Global Index)

[ DEPRECATED ]

Syntax

interface XPrintAreas : com::sun::star::uno::XInterface ;

Description

represents a sheet which has print areas.

Method 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.

Method Details



getPrintAreas

Syntax

sequence< com::sun::star::table::CellRangeAddress > getPrintAreas ();

Description

returns the print areas of the sheet.


setPrintAreas

Syntax

void setPrintAreas (
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

Syntax

boolean getPrintTitleColumns ();

Description

returns true if the title columns are repeated on all subsequent print pages to the right.


setPrintTitleColumns

Syntax

void setPrintTitleColumns (
boolean bPrintTitleColumns );

Description

specifies if the title columns are repeated on all subsequent print pages to the right.


getTitleColumns

Syntax

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

Syntax

void setTitleColumns (
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

Syntax

boolean getPrintTitleRows ();

Description

returns true if the title rows are repeated on all subsequent print pages to the bottom.


setPrintTitleRows

Syntax

void setPrintTitleRows (
boolean bPrintTitleRows );

Description

specifies if the title rows are repeated on all subsequent print pages to the bottom.


getTitleRows

Syntax

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

Syntax

void setTitleRows (
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