1XmComboBoxDeletePos(library call) XmComboBoxDeletePos(library call)
2
3
4
6 XmComboBoxDeletePos — Delete a XmComboBox item
7
9 #include <Xm/ComboBox.h>
10 void XmComboBoxDeletePos(
11 Widget w,
12 int pos);
13
15 The XmComboBoxDeletePos function deletes a specified item from a XmCom‐
16 boBox widget.
17
18 The w argument specifies the XmComboBox widget ID.
19
20 The pos argument specifies the position of the item to be deleted.
21
23 The XmComboBoxDeletePos function returns no value.
24
26 The functions XmComboBoxAddItem and XmComboBoxDeletePos have different
27 naming conventions (Item versus Pos) because of the objects they are
28 manipulating. The Item is a string to be added, the Pos is a numeric
29 position number.
30
32 XmComboBoxAddItem(3), XmComboBoxSetItem(3), XmComboBoxSelectItem(3).
33
34
35
36 XmComboBoxDeletePos(library call)