1XmTextGetString(library call) XmTextGetString(library call)
2
3
4
6 XmTextGetString — A Text function that accesses the string value
7
9 #include <Xm/Text.h>
10 char * XmTextGetString(
11 Widget widget);
12
14 XmTextGetString accesses the string value of the Text widget. The
15 application is responsible for freeing the storage associated with the
16 string by calling XtFree.
17
18 widget Specifies the Text widget ID
19
20 For a complete definition of Text and its associated resources, see
21 XmText(3).
22
24 Returns a character pointer to the string value of the text widget.
25 This returned value is a copy of the value of the XmNvalue resource.
26 Returns an empty string if the length of the Text widget's string is 0
27 (zero).
28
30 XmText(3) and XmTextGetStringWcs(3).
31
32
33
34 XmTextGetString(library call)