NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HxLink DID NOT INITIALIZE

BitOr Operator

Used to perform a logical disjunction on two numeric expressions.

Arguments

result
Required; any numeric variable.
expression1
Required; any expression.
expression2
Required; any expression.

Remarks

The Or operator performs a bitwise comparison of identically positioned bits in two numeric expressions and sets the corresponding bit in result according to the following table:

If bit in expression1 is And bit in expression2 is Then result is
0 0 0
0 1 1
1 0 1
1 1 1

See Also

BitAnd | BitNotBitXor