1XmCreateWorkArea(library call) XmCreateWorkArea(library call)
2
3
4
6 XmCreateWorkArea — A function that creates a RowColumn WorkArea
7
9 #include <Xm/RowColumn.h>
10 Widget XmCreateWorkArea(
11 Widget parent,
12 String name,
13 ArgList arglist,
14 Cardinal argcount);
15
17 XmCreateWorkArea creates an instance of a RowColumn widget and returns
18 the associated widget ID. The widget is created with XmNrowColumnType
19 set to XmWORK_AREA.
20
21 parent Specifies the parent widget ID
22
23 name Specifies the name of the created widget
24
25 arglist Specifies the argument list
26
27 argcount Specifies the number of attribute/value pairs in the argument
28 list (arglist)
29
30 For a complete definition of RowColumn and its associated resources,
31 see XmRowColumn(3).
32
34 Returns the RowColumn widget ID.
35
37 XmCreateRadioBox(3), XmCreateSimpleCheckBox(3), XmCreateSimpleRa‐
38 dioBox(3), XmRowColumn(3), XmVaCreateSimpleCheckBox(3), and XmVaCre‐
39 ateSimpleRadioBox(3).
40
41
42
43 XmCreateWorkArea(library call)