Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

ArithmeticOperation Enumeration

The type of the arithmetic operation to perform. See the IDocumentView.arithmeticOpAsync for more information.

SymbolValueDescription
Negation0Perform an arithmetic negation operation: x = -x.
Addition1Perform an arithmetic addition operation: x = x + v.
Subtraction2Perform an arithmetic subtraction operation: x = x - v.
Multiplication3Perform an arithmetic multiplication operation: x = x * v.
Division4Perform an arithmetic division operation: x = x / v.
Remainder5Perform an arithmetic remainder operation: x = x % v.
SetMinimum6Perform an arithmetic minimum operation: x = min(x, v).
SetMaximum7Perform an arithmetic maximum operation: x = max(x, v).