1XmCreateText(library call) XmCreateText(library call)
2
3
4
6 XmCreateText — The Text widget creation function
7
9 #include <Xm/Text.h>
10 Widget XmCreateText(
11 Widget parent,
12 String name,
13 ArgList arglist,
14 Cardinal argcount);
15
17 XmCreateText creates an instance of a Text widget and returns the asso‐
18 ciated widget ID.
19
20 parent Specifies the parent widget ID
21
22 name Specifies the name of the created widget
23
24 arglist Specifies the argument list
25
26 argcount Specifies the number of attribute/value pairs in the argument
27 list (arglist)
28
29 For a complete definition of Text and its associated resources, see
30 XmText(3).
31
33 Returns the Text widget ID.
34
36 XmText(3).
37
38
39
40 XmCreateText(library call)