1XmDropDownGetChild(library call) XmDropDownGetChild(library call)
2
3
4
6 XmDropDownGetChild — A DropDown function that is used to access a com‐
7 ponent
8
10 #include <Xm/DropDown.h>
11 Widget XmDropDownGetChild(
12 Widget widget,
13 int child);
14
16 XmDropDownGetChild is used to access a component within a DropDown.
17 The parameters given to the function are the DropDown widget and a
18 value indicating which component to access.
19
20 widget Specifies the DropDown widget ID.
21
22 child Specifies a component within the DropDown. The following are
23 legal values for this parameter:
24
25 · XmDROPDOWN_LABEL
26
27 · XmDROPDOWN_TEXT
28
29 · XmDROPDOWN_ARROW_BUTTON
30
31 · XmDROPDOWN_LIST
32
33 For a complete definition of DropDown and its associated resources, see
34 XmDropDown(3).
35
37 Returns the widget ID of the specified DropDown component. An applica‐
38 tion should not assume that the returned widget will be of any particu‐
39 lar class.
40
42 XmDropDown(3).
43
44
45
46 XmDropDownGetChild(library call)