1XmTextFieldGetStringWcs(library call) XmTextFieldGetStringWcs(library call)
2
3
4
6 XmTextFieldGetStringWcs — A TextField function that retrieves a copy of
7 the wide character string value of a TextField widget
8
10 #include <Xm/TextF.h>
11 wchar_t * XmTextFieldGetStringWcs(
12 Widget widget);
13
15 XmTextFieldGetStringWcs retrieves a copy of the wide character string
16 value of the TextField widget. The application is responsible for free‐
17 ing the storage associated with 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 the wide character string value of the TextField widget. The
26 function returns an empty string if the length of the TextField wid‐
27 get's string is 0 (zero).
28
30 XmTextField(3) and XmTextFieldGetString(3).
31
32
33
34 XmTextFieldGetStringWcs(library call)