Difference between revisions of "FillTIA"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure FillTIA(var TIA: TIntArray; const Value: Integer); </source> ==Availability== SCAR Divi 3.38 > Current ==Descript...")
 
(No difference)

Latest revision as of 20:26, 10 December 2012

Definition

procedure FillTIA(var TIA: TIntArray; const Value: Integer);

Availability

SCAR Divi 3.38 > Current

Description

Fills a given TIntArray TIA with Value. A function with extended functionality is available as FillTIAEx.

Example

var
  TIA: TIntArray;
  
begin
  SetLength(TIA, 10);
  FillTIA(TIA, 5);
  WriteLn(TIAToStr(TIA));
end.

Output:

5,5,5,5,5,5,5,5,5,5

See Also