1XmTextSetInsertionPosition(library callX)mTextSetInsertionPosition(library call)
2
3
4
6 XmTextSetInsertionPosition — A Text function that sets the position of
7 the insert cursor
8
10 #include <Xm/Text.h>
11 void XmTextSetInsertionPosition(
12 Widget widget,
13 XmTextPosition position);
14
16 XmTextSetInsertionPosition sets the insertion cursor position of the
17 Text widget. This routine also calls the widget's XmNmotionVerifyCall‐
18 back callbacks if the insertion cursor position changes.
19
20 widget Specifies the Text widget ID
21
22 position Specifies the position of the insertion cursor. This is an
23 integer number of characters from the beginning of the text
24 buffer. The first character position is 0 (zero).
25
26 For a complete definition of Text and its associated resources, see
27 XmText(3).
28
30 XmText(3).
31
32
33
34 XmTextSetInsertionPosition(library call)