Freigeben über


_WWidthP( ), API-Bibliotheksroutine

Gibt die Breite des Inhaltsbereichs des angegebenen Fensters in Pixel zurück.

unsigned int _WWidthP(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 werden Höhe und Breite des aktiven Fensters in Pixel angezeigt.

Visual FoxPro-Code

SET LIBRARY TO WWIDTHP 
=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(_WHeightP(wh), 5);
   _PutStr("\nwidth  ="); putLong(_WWidthP(wh), 5);
}

FoxInfo myFoxInfo[] = {
   {"WDIMEN", Example, 0, ""},
};
FoxTable _FoxTable = {
   (FoxTable FAR *) 0, sizeof(myFoxInfo)/sizeof(FoxInfo), myFoxInfo
};

Siehe auch

_WBottom( ), API-Bibliotheksroutine | _WHeightP( ), API-Bibliotheksroutine | _WLeftP( ), API-Bibliotheksroutine | _WRightP( ), API-Bibliotheksroutine | _WTopP( ), API-Bibliotheksroutine