1XmVaCreateLabel(library call) XmVaCreateLabel(library call)
2
3
4
6 XmVaCreateLabel, XmVaCreateManagedLabel — A Label widget convenience
7 creation functions.
8
10 #include <Xm/Label.h>
11
12 Widget XmVaCreateLabel(
13 Widget parent,
14 String name,
15 ...);
16
17 Widget XmVaCreateManagedLabel(
18 Widget parent,
19 String name,
20 ...);
21
23 These functions create an instance of a Label 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 XmVaCreateLabel function is a convenience routine that calls XtCre‐
28 ateWidget.
29
30 The XmVaCreateManagedLabel 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 Label and its associated resources, see
41 XmLabel(3).
42
44 Returns the Label widget ID.
45
47 XmLabel(3), XmCreateLabel(3), XtCreateWidget(3), and XtCreateManaged‐
48 Widget(3).
49
50
51
52 XmVaCreateLabel(library call)