Version

UltraCalcOperatorFunction Enumeration

Enumeration of operator functions.
Syntax
'Declaration
 
Public Enum UltraCalcOperatorFunction 
   Inherits System.Enum
public enum UltraCalcOperatorFunction : System.Enum 
Members
MemberDescription
AddOperator used to add two values ("+")
ConcatenateOperator used to concatenate 2 strings ("&")
DivideOperator used to divide two values ("/")
EqualOperator used to compare two objects for equality ("=")
ExponentOperator used to raise a value to a specified power ("^")
GreaterThanOperator used to determine if one value is greater than a second value. (">")
GreaterThanOrEqualOperator used to determine if one value is greater than or equal to a second value. (">=")
LessThanOperator used to determine if one value is less than a second value. ("<")
LessThanOrEqualOperator used to determine if one value is less than or equal to a second value. ("<=")
MultiplyOperator used to multiply two values ("*")
NotEqualOperator used to compare if two values are different ("><" or "!=")
PercentOperator used to convert a value to a percentage ("%")
SubtractOperator used to subtract two values ("-")
UnaryMinusNegative unary operator ("-")
UnaryPlusPositive unary operator ("+")
Requirements

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

See Also