'Declaration Public Enum UltraCalcOperatorFunction Inherits System.Enum
public enum UltraCalcOperatorFunction : System.Enum
Member | Description |
---|---|
Add | Operator used to add two values ("+") |
Concatenate | Operator used to concatenate 2 strings ("&") |
Divide | Operator used to divide two values ("/") |
Equal | Operator used to compare two objects for equality ("=") |
Exponent | Operator used to raise a value to a specified power ("^") |
GreaterThan | Operator used to determine if one value is greater than a second value. (">") |
GreaterThanOrEqual | Operator used to determine if one value is greater than or equal to a second value. (">=") |
LessThan | Operator used to determine if one value is less than a second value. ("<") |
LessThanOrEqual | Operator used to determine if one value is less than or equal to a second value. ("<=") |
Multiply | Operator used to multiply two values ("*") |
NotEqual | Operator used to compare if two values are different ("><" or "!=") |
Percent | Operator used to convert a value to a percentage ("%") |
Subtract | Operator used to subtract two values ("-") |
UnaryMinus | Negative unary operator ("-") |
UnaryPlus | Positive unary operator ("+") |
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2