TOC PREV NEXT INDEX

UImultiList

Synopsis

multiple choice string list; select one or many from list of strings

UIprimitive UImultiList {
width = 75;
height =>4* UIdata.UIfonts[0].lineHeight;
int+nonotify numSelectedItems
=>array_size(selectedItems);
int selectedItems[];
string+OPort2 selectedText[];
int stringdims => array_size(strings);
string+IPort2 strings[];
omethod+notify_inst+notify update<NEvisible=0,
interruptable=0,lang="cxx"> = "UImultiListUpdate"
};

Description

Multiple string items can be selected simultaneously by highlighting the items and performing the activate action.

Subobjects

message

Attribute inherited from the UIprimitive class.

x = 0; y;width=75;height= 4 * UIdata.UIfonts[0].lineHeight

UIgeom class attributes.

canHaveChildren <Not visible in Network Editor>;shellParent <Not visible in Network Editor>

Attributes inherited from UIconnection class.

events <Not visible in Network Editor>;grouptoParent;* parent;&cursor

Attributes inherited from the UIwindow class.

&visible;&active;pixmap;color;fontAttribute;handle <Internal Object. Not visible in Network Editor>;fontlist <No longer used. Not visible in Network Editor>;cxxhandle <Internal Object. Not visible in Network Editor>;motif_resources <No longer used. Not visible in Network Editor>;window_resources <No longer used. Not visible in Network Editor>;layout <No longer used. Not visible in Network Editor>

Attributes inherited from UIcore class.

numSelectedItems;

(Integer.) Number of list items currently selected.

selectedItems[];

(Integer array.) Array of selected item index numbers.

selectedText[];

(String array. OPort2) Array of selected list strings.

stringdims;

(Integer.) Size of list of string items to display.

strings[];

(String array. IPort2) Array of string to display in list.

Example

Not Available

File

v/UI.v

See Also Related Modules

UIlist

TOC PREV NEXT INDEX