| Explanation | Gets the column and row numbers of the right and bottom cells of the spreadsheet in the display area. |
| Call format | GetBottomRightCell() |
| Return value | Record object with the following child objects | Type | Name | Description | | Number | Col | Column number of the rightmost cell in the display area | | Number | Row | Row number of the cell at the bottom of the display area | |
| Arguments | None |
| Exception | EXT-28 | An error occurred in the GetBottomRightCell method |
| Example of use |
var ret = GetBottomRightCell();
print(ret.Col, ret.Row, "\n");
|
| Related item | LeftCol, TopRow properties |