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

Gets the lower limit type of the text table element of the parameter as string More...

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

Public Attributes

IntervalTerm interval
 Cardinality [1]
The element addresses the Interval (MCDInterval) which lower limit type shall be returned. 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 lower limit type of the text table element of the parameter as string

The GetIntervalLowerLimitTypeAsString activity which returns the lower limit type of the text table element of the parameter as string. Valid values are "eLIMIT_CLOSED", "eLIMIT_INFINITE", "eLIMIT_OPEN".

Note: The appropriate MVCI system operation is MCDInterval::getLowerLimitIntervalType.

Syntax
StringTerm = DiagDataBrowsingPlus.GetIntervalLowerLimitTypeAsString(IntervalTerm interval);
Examples
// Local Declarations
DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
List<DiagDataBrowsingPlus.Interval> List_Interval;
String MyString;
// Flow
Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("AIRBAG", "", false), "DiagnServi_ClearDiagnInforSingle")), {"Dtc"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
List_Interval = DiagDataBrowsingPlus.GetDbParameterValidInternalIntervals(DbParameter);
MyString = DiagDataBrowsingPlus.GetIntervalLowerLimitTypeAsString(List_Interval[0]);

Member Data Documentation

◆ interval

IntervalTerm OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetIntervalLowerLimitTypeAsString.interval

Cardinality [1]
The element addresses the Interval (MCDInterval) which lower limit type shall be returned.

OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetIntervalLowerLimitTypeAsString.interval
IntervalTerm interval
Cardinality [1] The element addresses the Interval (MCDInterval) which lower limit type shall be retu...
Definition: DiagDataBrowsingPlus.cs:10067