1XmCreateContainer(library call) XmCreateContainer(library call)
2
3
4
6 XmCreateContainer — The Container widget creation function
7
9 #include <Xm/Container.h>
10 Widget XmCreateContainer(
11 Widget parent,
12 String name,
13 ArgList arglist,
14 Cardinal argcount);
15
17 XmCreateContainer creates an instance of a Container widget and returns
18 the associated widget ID.
19
20 parent Specifies the parent widget ID.
21
22 name Specifies the name of the created widget.
23
24 arglist Specifies the argument list.
25
26 argcount Specifies the number of attribute/value pairs in the argument
27 list (arglist).
28
29 For a complete definition of Container and its associated resources,
30 see XmContainer(3).
31
33 This function returns the Container widget ID.
34
36 XmContainer(3).
37
38
39
40 XmCreateContainer(library call)