Variable Types

From Flowcode Help
Revision as of 09:22, 16 May 2013 by ReeceL (talk | contribs) (Created page with " Variables can be specified as one of the following types: {| class="wikitable" |- ! scope="col"| Type ! scope="col"| Range ! scope="col"| Bit Depth |- ! scope="row"| BOOL ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search


Variables 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

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