ReNamer:Pascal Script:Types
Jump to navigation
Jump to search
Integer types
| Type | Size | Range |
|---|---|---|
| Byte | 1 byte | 0 .. 255 |
| ShortInt | 1 byte | -128 .. 127 |
| Word | 2 bytes | 0 .. 65535 |
| SmallInt | 2 bytes | -32768 .. 32767 |
| Cardinal | 4 bytes | 0 .. 4294967295 |
| Integer | 4 bytes | -2147483648 .. 2147483647 |
Floating point types
| Type | Size | Range |
|---|---|---|
| Single | 32 bits | 1.18 x 10-38 .. 3.4 x 1038 |
| Double | 2.23 x 10-308 .. 1.79 x 10308 | |
| Extended | 3.37 x 10-4932 .. 1.18 x 104932 |
String types
| Type | Description |
|---|---|
| Char | Stores a single Ansi character |
| String | Holds a sequence of Ansi characters of any length |
| WideString | Holds a sequence of Unicode characters of any length |
Other types
| Type | Description |
|---|---|
| Boolean | |
| Array | |
| Record | |
| Enumerations | |
| Variant |