The type of the bitwise operation to perform. See the IDocumentView.bitwiseOpAsync for more information.
| Symbol | Value | Description |
|---|---|---|
Not | 0 | Perform a bitwise NOT operation: x = ~x. |
Or | 1 | Perform a bitwise OR operation: x = x | v. |
And | 2 | Perform a bitwise AND operation: x = x & v. |
Xor | 3 | Perform a bitwise XOR operation: x = x ^ v. |