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

Logical NOT-operation More...

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

Public Attributes

BooleanTerm term
 A term is an expression, which can be evaluated and returns a value. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

Logical NOT-operation

LogicNot is a term, which returns the result as a logical negation of the Boolean Expressions. D.h., the term is TRUE, if the operand has the value FALSE and vice versa.

Syntax
BooleanVariable = !BooleanTerm1;
Examples
// Local Declarations
Boolean MyValueOfBool1 = true;
Boolean result;
// Flow
result = !MyValueOfBool1;
result = !false;

Member Data Documentation

◆ term

BooleanTerm OpenTestSystem.Otx.Core.Terms.LogicNot.term

A term is an expression, which can be evaluated and returns a value.