Unix and Linux Discussions Tagged with position |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
6 |
9,725 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
7,158 |
UNIX for Beginners Questions & Answers |
|
|
|
23 |
28,345 |
Shell Programming and Scripting |
|
|
|
1 |
13,882 |
Programming |
|
|
|
8 |
6,312 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,955 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,889 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
7,811 |
Shell Programming and Scripting |
|
|
|
3 |
2,394 |
Shell Programming and Scripting |
|
|
|
4 |
3,184 |
Shell Programming and Scripting |
|
|
|
3 |
1,733 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
11,575 |
Shell Programming and Scripting |
|
|
|
2 |
3,184 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
17,118 |
Shell Programming and Scripting |
|
|
|
6 |
9,280 |
Shell Programming and Scripting |
|
|
|
10 |
8,969 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
26,798 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
28,050 |
UNIX and Linux Applications |
|
|
|
5 |
2,245 |
Shell Programming and Scripting |
|
|
|
3 |
2,552 |
Shell Programming and Scripting |
|
|
|
7 |
5,734 |
Shell Programming and Scripting |
|
|
|
1 |
4,229 |
Shell Programming and Scripting |
|
|
|
1 |
4,325 |
Shell Programming and Scripting |
|
|
|
0 |
14,354 |
Programming |
|
|
|
2 |
21,737 |
Shell Programming and Scripting |
|
|
|
6 |
83,998 |
Shell Programming and Scripting |
|
|
|
9 |
4,310 |
Shell Programming and Scripting |
|
|
|
2 |
3,274 |
Shell Programming and Scripting |
|
|
|
2 |
5,065 |
Shell Programming and Scripting |
|
|
|
7 |
9,419 |
Shell Programming and Scripting |
|
|
|
3 |
9,875 |
Programming |
|
|
|
2 |
26,329 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
6,946 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
10,055 |
Shell Programming and Scripting |
|
|
|
1 |
9,630 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
41,572 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
9,414 |
Programming |
|
|
|
1 |
2,329 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
6,713 |
Programming |
|
|
|
6 |
10,744 |
UNIX for Dummies Questions & Answers |
DtEditorSetInsertionPosition(library call) DtEditorSetInsertionPosition(library call)
NAME
DtEditorSetInsertionPosition -- set the position of the insert cursor in a DtEditor widget
SYNOPSIS
#include <Dt/Editor.h>
void DtEditorSetInsertionPosition(
Widget widget,
XmTextPosition position);
DESCRIPTION
The DtEditorSetInsertionPosition function sets the insertion cursor position of the DtEditor widget. The current position of the insertion
cursor can be retrieved with DtEditorGetInsertionPosition(3). The last text position of the DtEditor widget can be retrieved with DtEditor-
GetLastPosition(3).
The widget argument specifies the DtEditor widget ID.
The position argument specifies the position of the insertion cursor. This is an integer number of characters from the beginning of the
text buffer. The first character position is zero. Values greater than the last position place the cursor at the last position (that is,
at the end of the text).
For a complete definition of the DtEditor widget and its associated resources, see DtEditor(3).
RETURN VALUE
The DtEditorSetInsertionPosition function returns no value.
SEE ALSO
Dt/Editor.h - DtEditor(5), DtEditor(3), DtEditorGetInsertionPosition(3), DtEditorGetLastPosition(3).
DtEditorSetInsertionPosition(library call)