StrToBox

From SCAR Divi Manual
Revision as of 15:11, 26 November 2012 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> function StrToBox(const Str: string): TBox; </source> ==Availability== SCAR Divi 3.37 > Current ===Notes=== *Before 3.38, t...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function StrToBox(const Str: string): TBox;

Availability

SCAR Divi 3.37 > Current

Notes

  • Before 3.38, the function had some flexibility issues with the input.

Description

Converts a given string 'Str to a TBox.

Example

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

Output:

(1,2,3,4)

See Also