_WWidth( ), API-Bibliotheksroutine
Gibt die Anzahl der Spalten im Inhaltsbereich des angegebenen Fensters zurück.
unsigned int _WWidth(WHANDLE wh)
WHANDLE wh; /* Window handle. */
Beispiel
Im folgenden Beispiel werden Höhe und Breite des aktiven Fensters in Zeilen und Spalten angezeigt.
Visual FoxPro-Code
SET LIBRARY TO WWIDTH
=WDIMEN()
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("\nheight ="); putLong(_WHeight(wh), 5);
_PutStr("\nwidth ="); putLong(_WWidth(wh), 5);
}
FoxInfo myFoxInfo[] = {
{"WDIMEN", (FPFI) Example, 0, ""},
};
FoxTable _FoxTable = {
(FoxTable FAR *) 0, sizeof(myFoxInfo)/sizeof(FoxInfo), myFoxInfo
};
Siehe auch
_WBottom( ), API-Bibliotheksroutine | _WHeight( ), API-Bibliotheksroutine | _WLeft( ), API-Bibliotheksroutine | _WRight( ), API-Bibliotheksroutine | _WTop( ), API-Bibliotheksroutine | _WWidthP( ), API-Bibliotheksroutine