1XmVaCreateForm(library call) XmVaCreateForm(library call)
2
3
4
6 XmVaCreateForm, XmVaCreateManagedForm — A Form widget convenience cre‐
7 ation functions.
8
10 #include <Xm/Form.h>
11
12 Widget XmVaCreateForm(
13 Widget parent,
14 String name,
15 ...);
16
17 Widget XmVaCreateManagedForm(
18 Widget parent,
19 String name,
20 ...);
21
23 These functions create an instance of a Form widget and returns the
24 associated widget ID. These routines use the ANSI C variable-length
25 argument list (varargs) calling convention.
26
27 The XmVaCreateForm function is a convenience routine that calls XtCre‐
28 ateWidget.
29
30 The XmVaCreateManagedForm function is a convenience routine that calls
31 XtCreateManagedWidget.
32
33 parent Specifies the parent widget ID.
34
35 name Specifies the name of the created widget.
36
37 ... Specifies the variable argument list to override the resource
38 defaults.
39
40 For a complete definition of Form and its associated resources, see
41 XmForm(3).
42
44 Returns the Form widget ID.
45
47 XmForm(3), XmCreateForm(3), XtCreateWidget(3), and XtCreateManagedWid‐
48 get(3).
49
50
51
52 XmVaCreateForm(library call)