Futurebasic/Language/Reference/def btnrect
DEF BTNRECT Statement
editDEF BTNRECT
editStatement
edit✔ Appearance ✔ Standard ✔ Console
Syntax
editDEF BTNRECT({rect | #rectAddr&}, buttonID%)
Description
editIf buttonID%
is the ID number of a button or scroll bar in the current window, then this statement returns the button's (or scroll bar's) bounding rectangle into rect
(which should be an 8-byte variable such as a RECT
type), or into the 8 bytes starting at address rectAddr&
. A button's ID number is assigned by the BUTTON
statement; a scroll bar's ID number is assigned by the SCROLL BUTTON
statement.
Example
editimage res/cd.gif CD Example: DEF BTNRECT.BAS
Note
editIf the specified button does not exist, then the rectangle (0,0)-(0,0) is returned.
See Also
editBUTTON statement; BUTTON&; DIALOG statement