LOTUSSCRIPT LANGUAGE
Syntax
expr1 Xor expr2
Elements
expr1, expr2
The following table explains how LotusScript determines the result of the Xor operation.
' Boolean usage Dim johnIsHere As Boolean, jimIsHere As Boolean
Dim oneButNotBothIsHere As Boolean
johnIsHere = TRUE
jimIsHere = FALSE
oneButNotBothIsHere = johnIsHere Xor jimIsHere
Print oneButNotBothIsHere ' Prints True
' Bit-wise usage Dim z As Integer, y As Integer z% = &b11110000 y% = &b11001100 Print Bin$(z% Xor y%) ' Prints 111100
See Also