Futurebasic/Language/Reference/def cbox
DEF <just> BOX StatementsEdit
DEF <just>BOXEdit
StatementsEdit
✔ Appearance ✔ Standard ✔ Console
SyntaxEdit
DEF {CBOX|LBOX|RBOX} ({rect | #rectAddr&}, stringVar$)
DescriptionEdit
Draws 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.
ExampleEdit
image res/cd.gif CD Example: DEF jBOX.BAS
FB Lite BehaviorEdit
When you use the "FB Lite" runtime, the DEF <just>BOX
statements switch to the Graphics Window before executing.
NoteEdit
To draw rectangle-bounded text that will redraw itself automatically (during a window refresh), use a static edit field (see the EDIT FIELD
statement).
See AlsoEdit
EDIT FIELD