VtDrawnListSelectItem
Select items in a DrawnList
Syntax
VtDrawnListSelectItem drawnlist_widgetName [options]
Description
Selects items in a DrawnList.
Options
- -all (NA)
- Selects all the items in the DrawnList.
- -field column matchStr (NA)
- Selects all items that match the string matchStr in column number
column. For example, if your list contains:
{0 1 "Apple"}
{0 1 "Orange"}
{0 1 "Kumquat"}
specifying -field 2 "Kumquat" would
match the last item in the list.
- -next (NA)
- Selects the next item, based on the current position.
- -position integer (NA)
- Selects the item at position integer. The base
position is 1. To indicate the last item in the list, use 0.
- -positionList integer_list (NA)
- Selects the items at positions specified by the list
integer_list
- -previous (NA)
- Selects the previous item, based on the current position.