listview.item Property


strText = listview.item(row, column);
listview.item(row, column) = strText;

Sets/retrieves the text at the specified row and column.

Parameters

row
Required. Zero-based integer specifying the row.
column
Required. Zero-based integer specifying the column.

Example

// Test get/set item(x, y)
    ListView.item(1, 1) = "changed text";
    if (ListView.item(1, 1) != "changed text")
        Env.LogError("Could not change subitem text");
		

See also

listview Overview | listview_itemData

 


© 2003 Lightweight Technologies. All rights reserved.