1XmTextGetLastPosition(library call) XmTextGetLastPosition(library call)
2
3
4
6 XmTextGetLastPosition — A Text function that accesses the last position
7 in the text
8
10 #include <Xm/Text.h>
11 XmTextPosition XmTextGetLastPosition(
12 Widget widget);
13
15 XmTextGetLastPosition accesses the last position in the text buffer of
16 the Text widget. This is an integer number of characters from the
17 beginning of the buffer, and represents the position that text added to
18 the end of the buffer is placed after. The first character position is
19 0 (zero). The last character position is equal to the number of char‐
20 acters in the text buffer.
21
22 widget Specifies the Text widget ID
23
24 For a complete definition of Text and its associated resources, see
25 XmText(3).
26
28 Returns an XmTextPosition value that indicates the last position in the
29 text buffer.
30
32 XmText(3).
33
34
35
36 XmTextGetLastPosition(library call)