_WSizeP( ), API-Bibliotheksroutine
Legt die neuen Abmessungen des angegebenen Fensters auf die Höhe und Breite fest, die durch h und v im pt-Parameter in Pixel angegeben werden.
void _WSizeP(WHANDLE wh, Point pt)
WHANDLE wh; /* Window handle. */
Point pt; /* Position. */
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 ein Fenster erstellt und anschließend dessen Höhe und Breite erweitert.
Visual FoxPro-Code
SET LIBRARY TO WSIZEP
C-Code
#include <pro_ext.h>
FAR WSizeEx(ParamBlk FAR *parm)
{
WHANDLE wh;
Point dim;
wh = _WOpenP(6,6,20,20,CLOSE | WEVENT,WINDOW_SCHEME,(Scheme FAR *)0,
WO_SYSTEMBORDER);
_WShow(wh);
dim.v = 14;
// Grow in width
for (dim.h = 14; dim.h < 480; dim.h += 40)
{
_WSizeP(wh, dim);
_Execute("WAIT");
}
// Grow in height
for (dim.v = 14; dim.v < 240; dim.v += 40)
{
_WSizeP(wh, dim);
_Execute("WAIT WINDOW 'Press Any Key To Change Window Size'");
}
}
FoxInfo myFoxInfo[] = {
{"ONLOAD", WSizeEx, CALLONLOAD, ""},
};
FoxTable _FoxTable = {
(FoxTable FAR *) 0, sizeof(myFoxInfo)/sizeof(FoxInfo), myFoxInfo
};
Siehe auch
_WBottomP( ), API-Bibliotheksroutine | _WLeftP( ), API-Bibliotheksroutine | _WRightP( ), API-Bibliotheksroutine | _WTopP( ), API-Bibliotheksroutine | _WSize( ), API-Bibliotheksroutine