|
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.
Syntax
- void removeRangeAddress
(
- com::sun::star::table::CellRangeAddress aCellRangeAddress )
- raises ( com::sun::star::container::NoSuchElementException );
Description
remove the given range from the cell ranges
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.
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.
|