1XmTextRemove(library call) XmTextRemove(library call)
2
3
4
6 XmTextRemove — A Text function that deletes the primary selection
7
9 #include <Xm/Text.h>
10 Boolean XmTextRemove(
11 Widget widget);
12
14 XmTextRemove deletes the primary selected text. If there is a selec‐
15 tion, this routine also calls the widget's XmNvalueChangedCallback and
16 verification callbacks, either XmNmodifyVerifyCallback or XmNmodifyVer‐
17 ifyCallbackWcs, or both. If both verification callback lists are regis‐
18 tered, the procedures of the XmNmodifyVerifyCallback list are executed
19 first and the resulting data is passed to the XmNmodifyVerifyCallback‐
20 Wcs callbacks. This function may also call the XmNmotionVerifyCallback
21 callback.
22
23 widget Specifies the Text widget ID.
24
25 For a complete definition of Text and its associated resources, see
26 XmText(3).
27
29 This function returns False if the primary selection is NULL or if the
30 widget does not own the primary selection. Otherwise, it returns True.
31
33 XmText(3).
34
35
36
37 XmTextRemove(library call)