Method
IpuzBoardget_cell
Declaration [src]
IpuzCell*
ipuz_board_get_cell (
IpuzBoard* board,
const IpuzCellCoord* coord
)
Description [src]
Retrieves the cell at coord
. If the coordinates are
outside the bounds of the board then it will return NULL
The coordinate system of the board
is similar to that of s spreadsheet. The
origin is the upper left corner. Row’s increase vertically downward, and
columns increase horizontally.
Parameters
coord
-
Type:
IpuzCellCoord
Coordinates for the cell.
The data is owned by the caller of the method.
Return value
Type: IpuzCell
The cell at coord
.
The returned data is owned by the instance. |
The return value can be NULL . |