< Futurebasic < Language < Reference
DEF BTNRECT Statement
DEF BTNRECT
Statement
✔ Appearance ✔ Standard ✔ Console
Syntax
DEF BTNRECT({rect | #rectAddr&}, buttonID%)
Description
If 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
image res/cd.gif CD Example: DEF BTNRECT.BAS
Note
If the specified button does not exist, then the rectangle (0,0)-(0,0) is returned.
See Also
BUTTON statement; BUTTON&; DIALOG statement
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.