LibreOffice
LibreOffice 24.2 SDK API Reference
|
allows to get and set an array of data from a cell range. More...
import"XCellRangeData.idl";
Public Member Functions | |
sequence< sequence< any > > | getDataArray () |
gets an array from the contents of the cell range. More... | |
void | setDataArray ([in] sequence< sequence< any > > aArray) |
fills the cell range with values from an array. More... | |
Public Member Functions inherited from XInterface | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. More... | |
void | acquire () |
increases the reference counter by one. More... | |
void | release () |
decreases the reference counter by one. More... | |
allows to get and set an array of data from a cell range.
The outer sequence represents the rows and the inner sequence the columns of the array.
sequence< sequence< any > > getDataArray | ( | ) |
gets an array from the contents of the cell range.
Each element of the result contains a double
or a string
.
void setDataArray | ( | [in] sequence< sequence< any > > | aArray | ) |
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
.
com::sun::star::uno::RuntimeException | If the size of the array is different from the current size. |