VtDrawnListDeselectItem


Deselect an item from a DrawnList

Syntax

VtDrawnListDeselectItem drawnlist_widgetName [options]

Description

Deselects an item from a DrawnList. An error is generated if the specified items do not exist.

Options

-all (NA)
Deselects all items from the list.

-field column matchStr (NA)
Deselects the item in which item number column matches the string matchStr. For example, if your list contains:
{0 1 "Apple"}
{0 1 "Orange"}  
{0 1 "Kumquat"}

specifying -field 2 "Kumquat" would deselect the last item in the list.

-position integer (NA)
Deselects the item at position integer. The base position is 1. To deselect the last item in the list, use a value of 0.

-positionList integer_list (NA)
Deselects the items in a list at positions specified by the list integer_list.