Sets the text for a specific cell (row and column) in the list view.
Takes listViewID (Int), row (Int), column (Int), and text (String).
Returns 1 on success, 0 if list view not found.
BGI GUI
Parameters & Returns
Parameters
listViewIDInt
rowInt
columnInt
textString
Returns
Int
Quick Summary
Sets the text for a specific cell (row and column) in the list view.
Takes listViewID (Int), row (Int), column (Int), and text (String).
Returns 1 on success, 0 if list view not found.
Technical Exegesis...
Sets the text content for a specific cell in a list view control by row and column indices. Searches gizmoMap for the list view ID. Calls ListView_SetItemText with row (item index), column (subitem index), and text. Returns 1 on success, 0 if list view not found.
This function sets text for 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.). Can update column 0 (main item) or any subitem column.
Sets the text content for a specific cell in a list view control by row and column indices. Searches gizmoMap for the list view ID. Calls ListView_SetItemText with row (item index), column (subitem index), and text. Returns 1 on success, 0 if list view not found.
This function sets text for 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.). Can update column 0 (main item) or any subitem column. Use after bgiAddListViewItem to populate additional columns. For example, after adding an item at row 5, call bgiSetListViewSubItem(listView, 5, 1, "data") to set column 1, bgiSetListViewSubItem(listView, 5, 2, "more data") for column 2, etc. Updates existing cell text if called multiple times on same cell.