1XmTextFieldRemove(library call) XmTextFieldRemove(library call)
2
3
4
6 XmTextFieldRemove — A TextField function that deletes the primary
7 selection
8
10 #include <Xm/TextF.h>
11 Boolean XmTextFieldRemove(
12 Widget widget);
13
15 XmTextFieldRemove deletes the primary selected text. If there is a
16 selection, this routine also calls the widget's XmNvalueChangedCallback
17 and verification callbacks, either XmNmodifyVerifyCallback or XmNmodi‐
18 fyVerifyCallbackWcs, or both. If both verification callback lists are
19 registered, the procedures of the XmNmodifyVerifyCallback list are exe‐
20 cuted first and the resulting data is passed to the XmNmodifyVerify‐
21 CallbackWcs callbacks. This function may also call the XmNmotionVeri‐
22 fyCallback callback.
23
24 widget Specifies the TextField widget ID.
25
26 For a complete definition of TextField and its associated resources,
27 see XmTextField(3).
28
30 This function returns False if the primary selection is NULL or if the
31 widget does not own the primary selection. Otherwise, it returns True.
32
34 XmTextField(3).
35
36
37
38 XmTextFieldRemove(library call)