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

Checks the value of this diag:Parameter is of data type Float (FLOAT32, FLOAT64) or not. More...

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

Public Attributes

ParameterTerm parameter
 Cardinality [1]
The element addresses the diag:Parameter (MCDParameter) which is checked whether it is of data type Float 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 Float (FLOAT32, FLOAT64) or not.

The IsFloatParameter activity which returns True whether the value of this diag:Parameter is of data type Float (FLOAT32, FLOAT64). In all other cases it returns False.

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

Syntax
BooleanTerm = DiagDataBrowsingPlus.IsFloatParameter(ParameterTerm parameter);
Examples
// Local Declarations
DiagCom.Result Result;
DiagCom.Response Response;
DiagCom.Parameter Parameter;
Boolean MyBoolean;
// Flow
[#MetaData(RequestPdu), <#Data>22 2A 19</#Data>]
DiagCom.ExecuteDiagService(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "EV_GatewLear_006", false), "DiagnServi_ReadDataByIdentMeasuValue"), {Param_RecorDataIdent = "stall current measurement value"}, {}, Result, NULL, false, false);
Response = DiagCom.GetFirstResponse(Result);
Parameter = DiagCom.GetParameterByPath(Response, {"Param_DataRecor", "Param_StallCurreMeasuValue", "Case_MeasuValue", "Param_Ruhes"});
MyBoolean = DiagDataBrowsingPlus.IsFloatParameter(Parameter);

Member Data Documentation

◆ parameter

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

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

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