OTX Reference  
OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.IsIntegerParameter Class Reference

Checks the value of this diag:Parameter is of data type Integer or not. More...

Inheritance diagram for OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.IsIntegerParameter:
Inheritance graph

Public Attributes

ParameterTerm parameter
 Cardinality [1]
The element addresses the diag:Parameter (MCDParameter) which is checked whether it is of data type Integer or not. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Cardinality [0..1]
The MetaData type allows tools to store additional, mainly tool-specific data. More...
 

Detailed Description

Checks the value of this diag:Parameter is of data type Integer or not.

The IsIntegerParameter activity which returns True whether the value of this diag:Parameter is of data type Integer (INT16, INT32, INT64, INT8, UINT16, UINT32, UINT64, UINT8, DTC, END_OF_PDU, ENVDATA, ENVDATADESC, FIELD, MULTIPLEXER, STRUCTURE, LENGTHKEY, TABLE_ROW). In all other cases it returns False.

Note: The appropriate MVCI system operation is MCDParameter::getDataType.

Syntax
BooleanTerm = DiagDataBrowsingPlus.IsIntegerParameter(ParameterTerm parameter);
Examples
// Local Declarations
DiagCom.Parameter Parameter;
Boolean MyBoolean;
// Flow
Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "", false), "SinglJob_WriteFinge")), {"IPA_ProgrDate", "Param_Year"});
MyBoolean = DiagDataBrowsingPlus.IsIntegerParameter(Parameter);

Member Data Documentation

◆ parameter

ParameterTerm OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.IsIntegerParameter.parameter

Cardinality [1]
The element addresses the diag:Parameter (MCDParameter) which is checked whether it is of data type Integer or not.

OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.IsIntegerParameter.parameter
ParameterTerm parameter
Cardinality [1] The element addresses the diag:Parameter (MCDParameter) which is checked whether it i...
Definition: DiagDataBrowsingPlus.cs:8943