====== BitOR ====== BitOR(, [, ]]) The function returns the result of a bitwise "OR" for the passed values. **Parameters** |< 100% 15% >| |value1|First value.| |value2|Second value.| |valueN|Third and other values.| **Related** [[bitand]], [[bitnot]], [[bitshift]], [[bitxor]] **Remarks** Bitwise operations are performed as 32-bit integers. **Examples** MsgBox(BitOR(1, 2)) # --> 3 MsgBox(BitOR(8, 16, 32)) # --> 56 MsgBox(BitOR(13, 7)) # --> 15