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

Gets the display radix of the parameter. More...

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

Public Attributes

DbParameterTerm dbParameter
 Cardinality [1]
The parameter to return the display radix. 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

Gets the display radix of the parameter.

The GetDbParameterRadix term returns the display radix of the parameter. The display radix shall be used by the client to display a numeric parameter value in the format as defined in the database (2 - ODX value BIN, 10 - ODX value DEC, 16 - ODX value HEX).

Note: The appropriate MVCI system operation is Operation MCDDbParameter::getRadix.

Exceptions
Exceptions.InvalidTypeExceptionIf the parameter is not a A_UINT or A_INT value
Syntax
IntegerTerm = DiagDataBrowsingPlus.GetDbParameterRadix(DbParameterTerm dbParameter);
Examples
// Local Declarations
DiagCom.Request Request;
DiagDataBrowsingPlus.DbParameter DbParameter;
DiagCom.Parameter Parameter;
Integer MyInteger;
// Flow
Request = DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "", false), "DiagnServi_ReadDataByIdentGenerServi"));
Parameter = DiagCom.GetParameterByPath(Request, {"Param_RecorDataIdent"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
MyInteger = DiagDataBrowsingPlus.GetDbParameterRadix(DbParameter);

Member Data Documentation

◆ dbParameter

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

Cardinality [1]
The parameter to return the display radix.

OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbParameterRadix.dbParameter
DbParameterTerm dbParameter
Cardinality [1] The parameter to return the display radix.
Definition: DiagDataBrowsingPlus.cs:6682