_WPosCursorP( ), API-Bibliotheksroutine
Positioniert die Ausgabeposition im angegebenen Fenster an der Stelle, die durch pt in Pixel angegebenen wird.
void _WPosCursorP(WHANDLE wh, Point pt)
WHANDLE wh; /* Window handle. */
Point pt; /* Location for output position. */
Hinweise
Durch _WPosCursor( ) wird die Einfügemarke nicht angezeigt. Die Einfügemarke ist normalerweise nur sichtbar, wenn Visual FoxPro auf Eingaben wartet.
Weitere Informationen zum Erstellen einer API-Bibliothek und ihrer Integration in Visual FoxPro finden Sie unter Zugreifen auf die Visual FoxPro-API.
Beispiel
Im folgenden Beispiel wird ein Fenster erstellt und ein diagonales Muster mit dem Zeichen X in diesem Fenster ausgegeben. Der Cursor wird vor jedem Schreiben des Zeichens X mit _WPosCursorP( ) positioniert, und diese Position wird mit _WGetCursorP( ) abgerufen.
Visual FoxPro-Code
SET LIBRARY TO WPOSCURP
C-Code
#include <pro_ext.h>
void putLong(long n, int width)
{
Value val;
val.ev_type = 'I';
val.ev_long = n;
val.ev_width = width;
_PutValue(&val);
}
FAR Example(ParamBlk FAR *parm)
{
WHANDLE wh;
Point putPos, getPos;
wh = _WOpen(4,4,20,70,0,WINDOW_SCHEME,(Scheme FAR *)0,
WO_SYSTEMBORDER);
_WShow(wh);
for (putPos.v = 10; putPos.v < 100; putPos.v += 10)
{
putPos.h = putPos.v;
_WPosCursorP(wh, putPos);
_WPutChr(wh, 'X');
getPos = _WGetCursorP(wh);
_PutStr("\nCursor position:");
putLong(getPos.v, 5);
putLong(getPos.h, 5);
_Execute("WAIT");
}
_WClose(wh);
}
FoxInfo myFoxInfo[] = {
{"ONLOAD", Example, CALLONLOAD, ""},
};
FoxTable _FoxTable = {
(FoxTable FAR *) 0, sizeof(myFoxInfo)/sizeof(FoxInfo), myFoxInfo
};
Siehe auch
_WGetCursorP( ), API-Bibliotheksroutine | Zugreifen auf die Visual FoxPro-API | _WPosCursor( ), API-Bibliotheksroutine | _WPutChr( ), API-Bibliotheksroutine | _WPutStr( ), API-Bibliotheksroutine