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