Booleans
Some RealFlow instructions can only work with a Boolean type. In combination with RealFlow there are only two possibilities: true and false. This data type is comparable to a switch. Such a switch can either be on (true
) or off (false
). There are no other states between, and that is exactly the way Boolean types work:
setAddToGlobalLinks(true) or setAddToGlobalLinks(false)
Â
Â