1XmDataFieldSetString(library call) XmDataFieldSetString(library call)
2
3
4
6 XmDataFieldSetString — A DataField function that sets the string value
7
9 #include <Xm/DataF.h>
10 void XmDataFieldSetString(
11 Widget widget,
12 char * value);
13
15 XmDataFieldSetString sets the string value of the DataField widget.
16 This routine calls the widget's XmNvalueChangedCallback and verifica‐
17 tion callbacks, either XmNmodifyVerifyCallback or XmNmodifyVerifyCall‐
18 backWcs, or both. If both verification callback lists are registered,
19 the procedures of the XmNmodifyVerifyCallback list are executed first
20 and the resulting data is passed to the XmNmodifyVerifyCallbackWcs
21 callbacks. It also sets the insertion cursor position to the beginning
22 of the string and calls the widget's XmNmotionVerifyCallback callbacks.
23
24 widget Specifies the DataField widget ID
25
26 value Specifies the character pointer to the string value and
27 places the string into the text edit window
28
29 For a complete definition of DataField and its associated resources,
30 see XmDataField(3).
31
33 XmDataField(3) and XmDataFieldSetStringWcs(3).
34
35
36
37 XmDataFieldSetString(library call)