OTX Reference  
OpenTestSystem.Otx.Core.Terms.Add Class Reference

Sum of all operands More...

Inheritance diagram for OpenTestSystem.Otx.Core.Terms.Add:
Inheritance graph

Public Attributes

NumericTerm[] numeral
 Numeric value of the operation of type NumericTerm. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

Sum of all operands

Add is a Term which returns the sum of all numerical (operands).

Value = IntegerTerm1 + IntegerTerm2 + ...
Syntax
NumericTerm = NumericTerm1 + NumericTerm2;
Examples
// Local Declarations
Integer MyValue1 = 1;
Integer MyValue2 = 5;
Integer Result1;
Float Result2;
// Flow
Result1 = MyValue1 + MyValue2 + 2 + 1;
Result2 = MyValue1 + MyValue2 + 2 + 1.25;

Member Data Documentation

◆ numeral

NumericTerm [] OpenTestSystem.Otx.Core.Terms.Add.numeral

Numeric value of the operation of type NumericTerm.