1XmVaCreateDataField(library call) XmVaCreateDataField(library call)
2
3
4
6 XmVaCreateDataField, XmVaCreateManagedDataField — A DataField widget
7 convenience creation functions.
8
10 #include <Xm/DataF.h>
11
12 Widget XmVaCreateDataField(
13 Widget parent,
14 String name,
15 ...);
16
17 Widget XmVaCreateManagedDataField(
18 Widget parent,
19 String name,
20 ...);
21
23 These functions create an instance of a DataField widget and returns
24 the associated widget ID. These routines use the ANSI C variable-
25 length argument list (varargs) calling convention.
26
27 The XmVaCreateDataField function is a convenience routine that calls
28 XtCreateWidget.
29
30 The XmVaCreateManagedDataField 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 DataField and its associated resources,
41 see XmDataField(3).
42
44 Returns the DataField widget ID.
45
47 XmDataField(3), XmCreateDataField(3), XtCreateWidget(3), and XtCreateM‐
48 anagedWidget(3).
49
50
51
52 XmVaCreateDataField(library call)