|
Syntax
- com::sun::star::table::XCell getCellByPosition
(
- long nColumn,
- long nRow )
- raises ( com::sun::star::lang::IndexOutOfBoundsException );
Returns
-
the specified cell.
Parameter nColumn
-
is the column index of the cell.
Parameter nRow
-
is the row index of the cell.
Syntax
- com::sun::star::table::XCellRange getCellRangeByPosition
(
- long nLeft,
- long nTop,
- long nRight,
- long nBottom )
- raises ( com::sun::star::lang::IndexOutOfBoundsException );
Returns
-
the specified sub-range.
Parameter nLeft
-
is the column index of the first cell.
Parameter nTop
-
is the row index of the first cell.
Parameter nRight
-
is the column index of the last cell.
Parameter nBottom
-
is the row index of the last cell.
Syntax
- com::sun::star::table::XCellRange getCellRangeByName
(
- string aRange );
Description
finds a cell or cell range by its name.
|