TBoxArray

From SCAR Divi Manual
Revision as of 11:55, 25 July 2012 by Freddy (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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)

See Also