The type of the arithmetic operation to perform. See the IDocumentView.arithmeticOpAsync for more information.
| Symbol | Value | Description |
|---|---|---|
Negation | 0 | Perform an arithmetic negation operation: x = -x. |
Addition | 1 | Perform an arithmetic addition operation: x = x + v. |
Subtraction | 2 | Perform an arithmetic subtraction operation: x = x - v. |
Multiplication | 3 | Perform an arithmetic multiplication operation: x = x * v. |
Division | 4 | Perform an arithmetic division operation: x = x / v. |
Remainder | 5 | Perform an arithmetic remainder operation: x = x % v. |
SetMinimum | 6 | Perform an arithmetic minimum operation: x = min(x, v). |
SetMaximum | 7 | Perform an arithmetic maximum operation: x = max(x, v). |