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

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

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

Public Attributes

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

The GetIntervalUpperLimitTypeAsString activity which returns the upper limit type of the text table element of the parameter as string. Valid values are "<span class='keyword'>eLIMIT_CLOSED</span>", "<span class='keyword'>eLIMIT_INFINITE</span>", "<span class='keyword'>eLIMIT_OPEN</span>".

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

Syntax
StringTerm = DiagDataBrowsingPlus.GetIntervalUpperLimitTypeAsString(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.GetIntervalUpperLimitTypeAsString(List_Interval[0]);

Member Data Documentation

◆ interval

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

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

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