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

Product of all operands More...

Inheritance diagram for OpenTestSystem.Otx.Core.Terms.Multiply:
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

Product of all operands

Multiplyis a term which returns the product 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 * 8 * MyValue2 * 3;
Result1 = MyValue1* 8.1 * MyValue2 * 3.2;

Member Data Documentation

◆ numeral

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

Numeric value of the operation of type NumericTerm.