Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » Elevate Web Builder Technical Support » Product Manuals » Elevate Web Builder 3 Manual » Language Reference » Types |
Type | Description |
Integer | A 52-bit, signed integer value in client applications (JavaScript), and a 64-bit signed integer value in server applications |
var MyInteger: Integer; begin MyInteger := 100; // Assign 100 to the Integer variable MyInteger := $64; // Assign 100 as hexadecimal to the Integer variable end;
Type | Description |
Double | A 64-bit, floating-point numeric value with a maximum precision of 16 digits. |
var MyDouble: Double; begin MyDouble := -100.25; // Assign -100.25 to the Double variable end;
Type | Description |
String | A string value with a variable number of characters. |
Char | A single character. |
var MyString: String; MyCharacter: Char; begin MyString := 'This is a test'; // Assign "This is a test" // to the String variable MyString := #13+#10; // Assign a carriage return and // linefeed to the String variable MyCharacter := MyString[2]; // Assign the second character // from the String variable to // the Char variable end;
Type | Description |
DateTime | A date/time value containing the number of milliseconds since midnight on January 1, 1970. |
Type | Description |
Boolean | A logical true/false value. |
var MyBoolean: Boolean; begin MyBoolean := False; // Assign False to the Boolean variable end;
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 |