Unix and Linux Discussions Tagged with position |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
6 |
9,724 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
7,157 |
UNIX for Beginners Questions & Answers |
|
|
|
23 |
28,344 |
Shell Programming and Scripting |
|
|
|
1 |
13,881 |
Programming |
|
|
|
8 |
6,306 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,955 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,888 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
7,811 |
Shell Programming and Scripting |
|
|
|
3 |
2,394 |
Shell Programming and Scripting |
|
|
|
4 |
3,183 |
Shell Programming and Scripting |
|
|
|
3 |
1,732 |
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,046 |
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,353 |
Programming |
|
|
|
2 |
21,737 |
Shell Programming and Scripting |
|
|
|
6 |
83,996 |
Shell Programming and Scripting |
|
|
|
9 |
4,309 |
Shell Programming and Scripting |
|
|
|
2 |
3,274 |
Shell Programming and Scripting |
|
|
|
2 |
5,065 |
Shell Programming and Scripting |
|
|
|
7 |
9,418 |
Shell Programming and Scripting |
|
|
|
3 |
9,875 |
Programming |
|
|
|
2 |
26,329 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
6,945 |
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,411 |
Programming |
|
|
|
1 |
2,329 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
6,711 |
Programming |
|
|
|
6 |
10,743 |
UNIX for Dummies Questions & Answers |
XmTextFieldPosToXY(library call) XmTextFieldPosToXY(library call)
NAME
XmTextFieldPosToXY -- A TextField function that accesses the x and y position of a character position
SYNOPSIS
#include <Xm/TextF.h>
Boolean XmTextFieldPosToXY(
Widget widget,
XmTextPosition position,
Position *x,
Position *y);
DESCRIPTION
XmTextFieldPosToXY accesses the x and y position, relative to the upper left corner of the TextField widget, of a given character position
in the text buffer.
widget Specifies the TextField widget ID
position Specifies the character position in the text for which the x and y position is accessed. This is an integer number of characters
from the beginning of the buffer. The first character position is 0.
x Specifies the pointer in which the x position is returned. The returned position is the distance from the left side of the wid-
get to the left border of the character. This value is meaningful only if the function returns True.
y Specifies the pointer in which the y position is returned. The returned position is the distance from the top of the widget to
the character's baseline. This value is meaningful only if the function returns True.
For a complete definition of TextField and its associated resources, see XmTextField(3).
RETURN
This function returns True if the character position is displayed in the TextField widget; otherwise, it returns False, and no x or y value
is returned.
RELATED
XmTextField(3).
XmTextFieldPosToXY(library call)