Futurebasic/Language/Reference/fbgetcontrolrect

From Wikibooks, open books for an open world
Jump to navigation Jump to search

FBGETCONTROLRECT function

FBGETCONTROLRECT

Function

✔ Appearance ✔ Standard ✔ Console

Syntax

ignored = FN FBGETCONTROLRECT(cHndl&, rect)

Revised

August, 2002 (Release 7)

Description

Before OS X, we were able to extract the content rectangle of a button using the following code:

// REM does not work in OS X
DIM @t,l,b,r
BLOCKMOVE BUTTON&(_btnRefNum)+_contrlrect,@t,8

Carbon programs do not offer the ability to peek into structures like control records. FB provides this utility function for use in any program so that you may extract the rectangle regardless of the current version of system software.

DIM @t,l,b,r // old style rectangle
FN FBGETCONTROLRECT(BUTTON&(_thebutton), t)

or...

DIM r AS RECT // new style rectangle
FN FBGETCONTROLRECT(BUTTON&(_thebutton), r)