Difference between revisions of "BoxToStr"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> function BoxToStr(const Box: TBox): string; </source> ==Availability== SCAR Divi 3.35 > Current ==Description== Converts a giv...")
 
 
Line 21: Line 21:
  
 
==See Also==
 
==See Also==
 +
*[[StrToBox]]
 +
*[[StrToBoxDef]]
 
*[[Box]]
 
*[[Box]]
  

Latest revision as of 15:06, 26 November 2012

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