GuiReferenceGetCellContent

Retrieves the data stored in a specified cell in the current Reference View instance, based on the supplied row and column parameters.

char* GuiReferenceGetCellContent(int row, int col)

Parameters

row An integer representing the row for the cell for which the data is fetched.

col An integer representing the column for the cell for which the data is fetched.

Return Value

The return value is a pointer to a char representing the data (typically a string) that was stored at the specified row/column of the current Reference View instance. NULL if there was no data or the row/column specified was incorrect.

Example

Data = GuiReferenceGetCellContent(0,0);