Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » Elevate Web Builder Technical Support » Product Manuals » Elevate Web Builder 3 Manual » Language Reference » Arrays |
array of <Type Name>
var MyBooleanArray: array of Boolean;
var MyArray: array of Integer; begin SetLength(MyArray,10); ShowMessage(Length(MyArray)); // Displays the value 10 end;
MyArray[2]
[<Element> ,<Element>...]
var MyBooleanArray: array of Boolean = [True, False, True];
function ListStrings(Value: array of String): String; var I: Integer; begin Result := ''; for I := 0 to Length(Value) - 1 do begin if (I > 0) then Result := Result + ', '; Result := Result + Value[I]; end; end;
ShowMessage(ListStrings(['These','are','some','words']);
This web page was last updated on Thursday, November 16, 2023 at 10:39 AM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |