Variable Types
From Flowcode Help
Jump to navigationJump to searchVariables can be specified as one of the following types:
| Type | Range | Bit Depth |
|---|---|---|
| BOOL | 0-1 | 1-bit unsigned variable |
| BYTE | 0-255 | 8-bit unsigned variable |
| INT | +/- 32768 | 16-bit signed variable |
| UINT | 0-65535 | 16-bit unsigned variable |
| LONG | +/- 21474836648 | 32-bit signed variable |
| ULONG | 0-4294967295 | 32-bit unsigned variable |
| String | 0-255 | 8-bit unsigned array. Default size is 20. |
| Floating point | -Inf to +Inf | 32-bit signed variable |
| Object handle | <Content> | <Content> |
[Add Object Handle?]