SimpleMath
SimpleMath
Performs simple mathematical operations such as add, subtract, multiply, and divide. Also provides support for modulus (remainder after division) and power (raise a number to a specified power).
Properties
Operand
Type: Citrix.WorkflowStudio.ActivityLibrary.WorkflowMathFunctions.EnumOperand
Specifies the operand in the equation: <Number 1> <operand> <Number 2>. Suppose <Number 1> is '5' and <Number 2> is '2'. The Modulus operand result is '1', the remainder when you divide 5 by 2. The Power operand result is '25', the outcome of raising 5 to the power of 2.
Int1
Type: System.Object
Specifies the first number in the equation: <Number 1> <operand> <Number 2>.
Int2
Type: System.Object
Specifies the second number in the equation: <Number 1> <operand> <Number 2>.
Output
Type: System.Object
Contains the resulting Decimal value of the specified mathematic operation.
Add Comment