Extensions.DiagDataBrowsingPlus.GetTextTableElementInterval

From emotive
Jump to navigation Jump to search

Classification

Name GetTextTableElementInterval
Short Description Gets the interval of the TextTableElement
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group TextTableElement related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

IntervalTerm DiagDataBrowsingPlus.GetTextTableElementInterval(TextTableElementTerm textTableElement);

Description

GetTextTableElementInterval returns the Interval of the text table element.

Icons Note.png The appropriate MVCI system operation is MCDTextTableElement::getInterval

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
Interval Returns the Interval of the text table element.

Properties

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

OTL Examples

/// Local Declarations

DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
List<DiagDataBrowsingPlus.TextTableElement> List_TextTableElement;
DiagDataBrowsingPlus.Interval Interval;

/// Flow

Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "", false), "DiagnServi_ReadDataByIdentECUIdent")), {"Param_RecorDataIdent"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
List_TextTableElement = DiagDataBrowsingPlus.GetDbParameterTextTableElements(DbParameter);
Interval = DiagDataBrowsingPlus.GetTextTableElementInterval(List_TextTableElement[0]);

See also

GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
ExecuteDiagService
GetFirstResponse
GetRequest
GetParameterByPath
GetParameterBySemantic
GetParameterDbParameter
GetDbParameterTextTableElements