ListViews


Is there an easy way to select the whole row of a ListView if multiple columns exist?


There is an attribute called SelectedRow in GridView which represents the selected row. Since ListView inherits from this class, it has the same attribute. Calling SetSelectedColumn(listView, 0) and SetSelectedRow(listView, n) (where n is the row number) will select an entire row.

GridView and ListView are more fully explained in the Magic Cap Class and Method Reference.