function BoxToStr(const Box: TBox): string;
SCAR Divi 3.35 > Current
Converts a given TBox Box to a string, structured as (X1,Y1,X2,Y2).
begin WriteLn(BoxToStr(Box(1, 2, 3, 4))); end.
Output:
(1,2,3,4)