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

Subtraction of two operands More...

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

Public Attributes

NumericTerm numeral
 Numeric value of the operation of type NumericTerm. More...
 
NumericTerm subtrahend
 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

Subtraction of two operands

Subtract is a term which returns the subtraction of two 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;
Result1 = MyValue1 - 222.2222;

Member Data Documentation

◆ numeral

NumericTerm OpenTestSystem.Otx.Core.Terms.Subtract.numeral

Numeric value of the operation of type NumericTerm.

◆ subtrahend

NumericTerm OpenTestSystem.Otx.Core.Terms.Subtract.subtrahend

Numeric value of the operation of type NumericTerm.