Gets the text content from a specific cell (row and column).
Takes listViewID (Int), row (Int), and column (Int).
Returns text on success, empty string if list view not found.
BGI GUI
Parameters & Returns
Parameters
listViewIDInt
rowInt
columnInt
Returns
String
Quick Summary
Gets the text content from a specific cell (row and column).
Takes listViewID (Int), row (Int), and column (Int).
Returns text on success, empty string if list view not found.
Technical Exegesis...
Retrieves the text content from a specific cell in a list view control by row and column indices. Searches gizmoMap for the list view ID. Calls ListView_GetItemText with row (item index), column (subitem index), static buffer (256 bytes), and buffer size. Returns text on success, empty string if list view not found.
This function reads text from any cell in the list view grid. Row is 0-based item index (first row = 0). Column is 0-based subitem index (first column = 0, second column = 1, etc.).
Retrieves the text content from a specific cell in a list view control by row and column indices. Searches gizmoMap for the list view ID. Calls ListView_GetItemText with row (item index), column (subitem index), static buffer (256 bytes), and buffer size. Returns text on success, empty string if list view not found.
This function reads text from any cell in the list view grid. Row is 0-based item index (first row = 0). Column is 0-based subitem index (first column = 0, second column = 1, etc.). Returns cell text limited to 256 bytes. Use for reading user data, validating selections, or processing list contents. Returns empty string for invalid row/column indices. Result stored in static buffer - copy immediately if needed across multiple calls.