1XmDataFieldGetString(library call) XmDataFieldGetString(library call)
2
3
4
6 XmDataFieldGetString — A DataField function that accesses the string
7 value
8
10 #include <Xm/DataF.h>
11 char * XmDataFieldGetString(
12 Widget widget);
13
15 XmDataFieldGetString accesses the string value of the DataField widget.
16 The application is responsible for freeing the storage associated with
17 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 a character pointer to the string value of the DataField 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 DataField wid‐
28 get's string is 0 (zero).
29
31 XmDataField(3) and XmDataFieldGetStringWcs(3).
32
33
34
35 XmDataFieldGetString(library call)