1XmDataFieldGetStringWcs(library call) XmDataFieldGetStringWcs(library call)
2
3
4
6 XmDataFieldGetStringWcs — A DataField function that retrieves a copy of
7 the wide character string value of a DataField widget
8
10 #include <Xm/DataF.h>
11 wchar_t * XmDataFieldGetStringWcs(
12 Widget widget);
13
15 XmDataFieldGetStringWcs retrieves a copy of the wide character string
16 value of the DataField widget. The application is responsible for free‐
17 ing the storage associated with the string by calling XtFree.
18
19 widget Specifies the DataField widget ID
20
21 For a complete definition of DataField and its associated resources,
22 see XmDataField(3).
23
25 Returns the wide character string value of the DataField widget. The
26 function returns an empty string if the length of the DataField wid‐
27 get's string is 0 (zero).
28
30 XmDataField(3) and XmDataFieldGetString(3).
31
32
33
34 XmDataFieldGetStringWcs(library call)