Futurebasic/Language/Reference/def cbox
DEF <just> BOX Statements
editDEF <just>BOX
editStatements
edit✔ Appearance ✔ Standard ✔ Console
Syntax
editDEF {CBOX|LBOX|RBOX} ({rect | #rectAddr&}, stringVar$)
Description
editDraws the text in stringVar$
(using the current font, size, style, etc.) within the rectangle specified by rect
(which should be an 8-byte variable such as a RECT
type) or pointed to by rectAddr&
.
No frame is drawn around the rectangle. If the rectangle is not wide enough to contain the entire string, then the string is automatically wrapped around to the next line, at word boundaries.
Each line of text is either Centered, Left-justified or Right-justified within the rectangle, depending on which variant of the statement you use.
No text is ever drawn outside of the rectangle; if the rectangle is not big enough to contain the entire string, then the text is clipped.
Example
editimage res/cd.gif CD Example: DEF jBOX.BAS
FB Lite Behavior
editWhen you use the "FB Lite" runtime, the DEF <just>BOX
statements switch to the Graphics Window before executing.
Note
editTo draw rectangle-bounded text that will redraw itself automatically (during a window refresh), use a static edit field (see the EDIT FIELD
statement).
See Also
editEDIT FIELD