Language Reference Guide : 4. System Classes : IntegerObject Class : BitAnd Method
 
Share this page                  
BitAnd Method
The BitAnd method returns the result of a bitwise AND operation between the value of the IntegerObject and the value given as argument.
Bitwise AND does the logical AND of the bits in each position of the value in its binary form. If two bits are 1, the answer is 1; otherwise the answer is 0.
This method has the following syntax:
integer8 = IntegerObject.BitAnd(value = integer8);
This method has the following parameter:
value
(Required) Specifies the value of the bitwise AND operation argument