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

(Global Index)

Syntax

interface XSheetCellRangeContainer : com::sun::star::sheet::XSheetCellRanges ;

Description

represents multiple cell ranges.

See also

SheetCellRanges

Method Summary

addRangeAddress add the given range to the cell ranges.

removeRangeAddress remove the given range from the cell ranges

addRangeAddresses add the given ranges to the cell ranges.

removeRangeAddresses remove the given ranges from the cell ranges.

Known Services Which Export this Interface

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

Method Details



addRangeAddress

Syntax

void addRangeAddress (
com::sun::star::table::CellRangeAddress aCellRangeAddress,
boolean bMergeRanges );

Description

add the given range to the cell ranges.

Parameter bMergeRanges

With the second parameter is it possible to define how the range should be added. To merge the ranges takes more time, but the memory usage is lower.

removeRangeAddress

Syntax

void removeRangeAddress (
com::sun::star::table::CellRangeAddress aCellRangeAddress )
raises ( com::sun::star::container::NoSuchElementException );

Description

remove the given range from the cell ranges


addRangeAddresses

Syntax

void addRangeAddresses (
sequence< com::sun::star::table::CellRangeAddress > aCellRangeAddresses,
boolean bMergeRanges );

Description

add the given ranges to the cell ranges.

Parameter bMergeRanges

With the second parameter is it possible to define how the ranges should be added. To merge the ranges takes more time, but the memory usage is lower.

removeRangeAddresses

Syntax

void removeRangeAddresses (
sequence< com::sun::star::table::CellRangeAddress > aCellRangeAddresses )
raises ( com::sun::star::container::NoSuchElementException );

Description

remove the given ranges from the cell ranges.

Top of Page