_WBottomP( ), API-Bibliotheksroutine
Gibt die Position auf dem Bildschirm in Pixel zurück, an der sich der untere Rand des angegebenen Fensters befindet.
unsigned int _WBottomP(WHANDLE wh)
WHANDLE wh; /* Window handle. */
Hinweise
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 die Position des aktiven Fensters angezeigt.
Visual FoxPro-Code
SET LIBRARY TO WBOTTOM
=WPOSITION()
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);
}
void FAR Example(ParamBlk FAR *parm)
{
WHANDLE wh = _WOnTop();
_PutStr("\ntop ="); putLong(_WTopP(wh), 5);
_PutStr("\nleft ="); putLong(_WLeftP(wh), 5);
_PutStr("\nbottom ="); putLong(_WBottomP(wh), 5);
_PutStr("\nright ="); putLong(_WRightP(wh), 5);
}
FoxInfo myFoxInfo[] = {
{"WPOSITION", Example, 0, ""},
};
FoxTable _FoxTable = {
(FoxTable FAR *) 0, sizeof(myFoxInfo)/sizeof(FoxInfo), myFoxInfo
};
Siehe auch
_WHeightP( ), API-Bibliotheksroutine | _WLeftP( ), API-Bibliotheksroutine | _WRightP( ), API-Bibliotheksroutine | _WTopP( ), API-Bibliotheksroutine | _WWidthP( ), API-Bibliotheksroutine | _WBottom( ), API-Bibliotheksroutine