1XmTextFieldSetString(library call) XmTextFieldSetString(library call)
2
3
4
6 XmTextFieldSetString — A TextField function that sets the string value
7
9 #include <Xm/TextF.h>
10 void XmTextFieldSetString(
11 Widget widget,
12 char * value);
13
15 XmTextFieldSetString sets the string value of the TextField 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 TextField 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 TextField and its associated resources,
30 see XmTextField(3).
31
33 XmTextField(3) and XmTextFieldSetStringWcs(3).
34
35
36
37 XmTextFieldSetString(library call)