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

(Global Index)

Syntax

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

Description

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

Method Summary

getDataArray gets an array from the contents of the cell range.

setDataArray fills the cell range with values from an array.

Method Details



getDataArray

Syntax

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

Syntax

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