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

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

interface XCellRangeData

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

Description
allows to get and set an array of data from a cell range.


Known Services which Export this Interface

com::sun::star::sheet::SheetCellRange represents a rectangular range of cells in a spreadsheet document.
com::sun::star::text::CellRange area of cells within a spreadsheet (text).
com::sun::star::text::TextTable is a table of text cells which is anchored to a surrounding text.

Methods' Summary

getDataArray gets an array from the contents of the cell range.
setDataArray fills the cell range with values from an array.

Methods' Details

getDataArray
 
sequence< sequence< any > >
getDataArray();
Description
gets an array from the contents of the cell range.

Each element of the result contains a double or a string .

setDataArray
 
void
setDataArray(
[ in ] sequence< sequence< any > > aArray );

Description
fills the cell range with values from an array.

The size of the array must be the same as the size of the cell range. Each element of the array must contain a double or a string .


Top of Page