FillTIA

From SCAR Divi Manual
Revision as of 19:26, 10 December 2012 by Freddy (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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