TBoxArray
From SCAR Divi Manual
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)