strText = listview.item(row, column);
listview.item(row, column) = strText;
Sets/retrieves the text at the specified row and column.
// 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");
listview Overview | listview_itemData