Futurebasic/Language/Reference/def blockfill
DEF BLOCKFILL & DEF LONGBLOCKFILL Statements
editDEF BLOCKFILL & DEF LONGBLOCKFILL
editStatements
edit✔ Appearance ✔ Standard ✔ Console
Syntax
editDEF BLOCKFILL(startAddr&, numBytes&, byteValueExpr)
DEF LONGBLOCKFILL(startAddr&, numBytes&, byteValueExpr)
Revised
editJuly 26, 2000 (Release 3)
Description
editFills each byte in a range of memory with the value specified in byteValExpr
. The startAddr&
parameter indicates the first memory address to fill, and numBytes&
indicates the number of bytes in the range. DEF BLOCKFILL
and DEF LONGBLOCKFILL
are identical.
Example
editimage res/cd.gif CD Example: DEF BLOCKFILL.BAS
See Also
editBLOCKMOVE; STRING$; SPACE$