clearColumnImage(This,Col)->ok
Types:
This = wxListView()
Col = integer()
Resets the column image - after calling this function, no image will be shown.
See: setColumnImage/3focus(This,Index)->ok
Types:
This = wxListView()
Index = integer()
Sets focus to the item with the given index.
getFirstSelected(This)->integer()
Types:
This = wxListView()
Returns the first selected item in a (presumably) multiple selection control.
Together with getNextSelected/2 it can be used to iterate over all selected items in the control.
Return: The first selected item, if any, -1 otherwise.
getFocusedItem(This)->integer()
Types:
This = wxListView()
Returns the currently focused item or -1 if none.
See: isSelected/2, focus/2getNextSelected(This,Item)->integer()
Types:
This = wxListView()
Item = integer()
Used together with getFirstSelected/1 to iterate over all selected items in the control.
Return: Returns the next selected item or -1 if there are no more of them.
isSelected(This,Index)->boolean()
Types:
This = wxListView()
Index = integer()
Returns true if the item with the given index is selected, false otherwise.
See: getFirstSelected/1, getNextSelected/2select(This,N)->ok
Types:
This = wxListView()
N = integer()
select(This,N,Options::[Option])->ok
Types:
This = wxListView()
N = integer()
Option = {on, boolean()}
Selects or unselects the given item.
Notice that this method inherits the unusual behaviour of wxListCtrl:setItemState/4 which sends a
wxEVT_LIST_ITEM_SELECTED event when it is used to select an item, contrary to the usual rule that
only the user actions result in selection.
setColumnImage(This,Col,Image)->ok
Types:
This = wxListView()
Col = Image = integer()
Sets the column image for the specified column.
To use the column images, the control must have a valid image list with at least one image.
wxWidgets team. wx 2.1.1 wxListView(3erl)