1XmTextFieldShowPosition(library call) XmTextFieldShowPosition(library call)
2
3
4
6 XmTextFieldShowPosition — A TextField function that forces text at a
7 given position to be displayed
8
10 #include <Xm/TextF.h>
11 void XmTextFieldShowPosition(
12 Widget widget,
13 XmTextPosition position);
14
16 XmTextFieldShowPosition forces text at the specified position to be
17 displayed. The cursor position is not updated nor is the cursor shown
18 at this position.
19
20 widget Specifies the TextField widget ID
21
22 position Specifies the character position to be displayed. This is an
23 integer number of characters from the beginning of the text
24 buffer. The first character position is 0 (zero). See
25 XmTextPosition(3) for details on the XmTextPosition data
26 type.
27
28 For a complete definition of TextField and its associated resources,
29 see XmTextField(3).
30
32 XmTextField(3) and XmTextPosition(3).
33
34
35
36 XmTextFieldShowPosition(library call)