TPADimensions

From SCAR Divi Manual
Revision as of 10:02, 3 July 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> procedure TPADimensions(const TPA: TPointArray; out Width, Height: Integer); </source> ==Availability== SCAR Divi 3.26 > Curren...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

procedure TPADimensions(const TPA: TPointArray; out Width, Height: Integer);

Availability

SCAR Divi 3.26 > Current

Description

Returns the dimensions of the area covered by a given TPointArray TPA in Width and Height.

Example

var
  w, h: Integer;

begin
  TPADimensions([Point(0, 0), Point(1, 2), Point(5, 4)], w, h);
  WriteLn(IntToStr(w) + 'x' + IntToStr(h));
end.

Output:

6x5

See Also