Futurebasic/Language/Reference/fbgetcontrolrect
< Futurebasic | Language | Reference
FBGETCONTROLRECT functionEdit
FBGETCONTROLRECTEdit
FunctionEdit
✔ Appearance ✔ Standard ✔ Console
SyntaxEdit
ignored = FN FBGETCONTROLRECT(cHndl&, rect)
RevisedEdit
August, 2002 (Release 7)
DescriptionEdit
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)