Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetIntervalLowerLimitAsString"

From emotive
Jump to navigation Jump to search
Line 18: Line 18:
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie2| interval|[[Extensions.DiagDataBrowsingPlus.Interval|Interval]] | [[Term]] | - | [1..1] |The element addresses the '''DbParameter''' (MCDInterval) which lower limit shall be returned.}}
+
{{TableRowPropertie2| interval|[[Extensions.DiagDataBrowsingPlus.Interval|Interval]] | [[Term]] | - | [1..1] |The element addresses the '''Interval''' (MCDInterval) which lower limit shall be returned.}}
 
|}
 
|}
  

Revision as of 03:17, 20 September 2018

Classification

Name GetIntervalLowerLimitAsString
Short Description Gets the ower limit of the Interval
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group Interval related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

StringTerm = DiagDataBrowsingPlus.GetIntervalLowerLimitAsString(IntervalTerm);

Description

GetIntervalLowerLimitAsString returns the lower limit of the text table element of the parameter as string.

Icons Note.png NOTE — The appropriate MVCI system operation is MCDInterval::getLowerLimit::getValueAsString

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
String Returns the lower limit of the text table element of the parameter as string.

Properties

Name Data Type Class Default Cardinality Description
interval Interval Term - [1..1] The element addresses the Interval (MCDInterval) which lower limit shall be returned.

OTL Examples

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.GetIntervalLowerLimitAsString(List_Interval[0]);

See also

GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
ExecuteDiagService
GetFirstResponse
GetRequest
GetParameterByPath
GetDbParameterValidInternalIntervals
GetDbParameterValidInternalIntervals