TOC PREV NEXT INDEX

UIcomboBox

Synopsis

a Windows system selection list

UIprimitive UIcomboBox {
width = 100;
height = 30;
string selectedText; /* The value enterd in the
text window */
Boolean listIsEditable; /* Default is 0 */
int numShowItems = 4;
int &selectedItem;
int stringdims => array_size( strings );
string+IPort2 strings[];
method_inst inst<NEvisible=0,lang="cxx",
interruptable=0>= "UIcomboBoxInstance";
method val update<NEvisible=0,lang="cxx",
interruptable=0>= "UIcomboBoxUpdate";
};

Description

UIcolor is a base class used by other UI classes to implement background and foreground color attributes. It cannot be instantiated separately.

Subobjects

message

Attribute inherited from the UIprimitive class.

x = 0; y;width=100;height=30;

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.

selectedText

String. Text string of item selected from list.

listIsEditable

Boolean. Default is 0.

numShowItems

Integer. Default is 4.

&selectedItem

Integer. Index of the string list item selected

stringdims

Integer. Number of items in the string list.

strings

String array. Array of strings displayed in the list.

Example

Not Available

File

v/UI.v

See Also Related Modules


TOC PREV NEXT INDEX