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