Futurebasic/Language/Reference/fbgetcontrolrect
FBGETCONTROLRECT function
editFBGETCONTROLRECT
editFunction
edit✔ Appearance ✔ Standard ✔ Console
Syntax
editignored = FN FBGETCONTROLRECT(cHndl&, rect)
Revised
editAugust, 2002 (Release 7)
Description
editBefore 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)