1XmComboBoxSetItem(library call) XmComboBoxSetItem(library call)
2
3
4
6 XmComboBoxSetItem — set an item in the XmComboBox list
7
9 #include <Xm/ComboBox.h>
10 void XmComboBoxSetItem(
11 Widget w,
12 XmString item);
13
15 The XmComboBoxSetItem function selects an item in the XmList of the
16 given XmComboBox widget and makes it the first visible item in the
17 list.
18
19 The w argument specifies the XmComboBox widget ID.
20
21 The item argument specifies the XmString for the item to be set in the
22 XmComboBox. If the item is not found on the list, XmComboBoxSetItem
23 notifies the user via the XtWarning function.
24
26 The XmComboBoxSetItem function returns no value.
27
29 XmComboBoxAddItem(3), XmComboBoxDeletePos(3), XmComboBoxSelectItem(3);
30 XtWarning(3). in the CAE Specification, Window Management: X Toolkit
31 Intrinsics.
32
33
34
35 XmComboBoxSetItem(library call)