BoxToStr

From SCAR Divi Manual
Revision as of 15:06, 26 November 2012 by Freddy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function BoxToStr(const Box: TBox): string;

Availability

SCAR Divi 3.35 > Current

Description

Converts a given TBox Box to a string, structured as (X1,Y1,X2,Y2).

Example

begin
  WriteLn(BoxToStr(Box(1, 2, 3, 4)));
end.

Output:

(1,2,3,4)

See Also