Difference between revisions of "TBoxArray"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> TBoxArray = array of TBox; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== A dynamic array type based o...") |
(No difference)
|
Latest revision as of 10:55, 25 July 2012
Definition
TBoxArray = array of TBox;
Availability
SCAR Divi 3.00 > Current
Description
A dynamic array type based on the TBox type.
Example
var Boxes: TBoxArray; begin Boxes := [Box(1, 2, 3, 4), Box(5, 6, 7, 8)]; WriteLn(BoxToStr(Boxes[0])); WriteLn(BoxToStr(Boxes[1])); end.
Output:
(1,2,3,4) (5,6,7,8)