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

Check this parameter is of ODX type CODED-CONST / PHYS-CONST or not. More...

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

Public Attributes

DbParameterTerm dbParameter
 Cardinality [1]
The parameter to check whether it is of ODX type CODED-CONST / PHYS-CONST 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

Check this parameter is of ODX type CODED-CONST / PHYS-CONST or not.

The IsDbParameterConstant term returns TRUE if this parameter is of ODX type CODED-CONST / PHYS-CONST; otherwise, FALSE.

Note: The appropriate MVCI system operation is MCDDbParameter::isConstant.

Syntax
BooleanTerm = DiagDataBrowsingPlus.IsDbParameterConstant(DbParameterTerm dbParameter);
Examples
// Local Declarations
DiagCom.Result Result;
DiagCom.Response Response;
DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
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"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
MyBoolean= DiagDataBrowsingPlus.IsDbParameterConstant(DbParameter);

Member Data Documentation

◆ dbParameter

DbParameterTerm OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.IsDbParameterConstant.dbParameter

Cardinality [1]
The parameter to check whether it is of ODX type CODED-CONST / PHYS-CONST or not.

OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.IsDbParameterConstant.dbParameter
DbParameterTerm dbParameter
Cardinality [1] The parameter to check whether it is of ODX type CODED-CONST / PHYS-CONST or not.
Definition: DiagDataBrowsingPlus.cs:9235