Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the column on the screen where the left edge of the specified window is located.
unsigned int _WLeft(WHANDLE wh)
WHANDLE wh; /* Window handle. */
Example
The following example shows the position of the active window.
Visual FoxPro Code
SET LIBRARY TO WLEFT
=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(_WTop(wh), 5);
_PutStr("\nleft ="); putLong(_WLeft(wh), 5);
_PutStr("\nbottom ="); putLong(_WBottom(wh), 5);
_PutStr("\nright ="); putLong(_WRight(wh), 5);
}
FoxInfo myFoxInfo[] = {
{"WPOSITION", (FPFI) Example, 0, ""},
};
FoxTable _FoxTable = {
(FoxTable FAR *) 0, sizeof(myFoxInfo)/sizeof(FoxInfo), myFoxInfo
};
See Also
_WBottom( ) API Library Routine | _WHeight( ) API Library Routine | _WRight( ) API Library Routine | _WTop( ) API Library Routine | _WWidth( ) API Library Routine