![]() | ![]() Products ![]() ![]() ![]() ![]() |
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 Friday, January 31, 2025 at 08:42 AM | Privacy Policy![]() © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? ![]() |