Difference between revisions of "Variable Types"

From Flowcode Help
Jump to navigationJump to search
(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 ...")
 
Line 42: Line 42:
 
| 32-bit signed variable
 
| 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
 

Revision as of 09:23, 16 May 2013


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