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)
参数
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.
返回值
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.
示例
Data = GuiReferenceGetCellContent(0,0);