GETCLIENTSIZE

Top  Previous  Next

Syntax

GETCLIENTSIZE(win as WINDOW, l as UINT BYREF,t as UINT BYREF,w as UINT BYREF,h as UINT BYREF)

Description

Returns the size of the client area of the window or dialog.

Parameters

win - Window or dialog.

l, t, w, h - Variables of type UINT to receive the left, top, width and height of the client area.

Return value

None

Remarks

The left and top will always be 0 with this function.

See Also: GETSIZE, GETSCREENSIZE

Example usage

DEF l,t,w,h as UINT
GETCLIENTSIZE mywnd, l, t, w, h