bgiSetListViewSubItem

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

listViewID Int
row Int
column Int
text String

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.

Example

Example.bam
; No example implemented yet