Difference between revisions of "Extensions.DiagCom.GetParameterTextId"
Jump to navigation
Jump to search
m (Hb moved page GetParameterTextId to Extensions.DiagCom.GetParameterTextId: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:DiagCom]] | + | {{DISPLAYTITLE:OTX '''GetParameterTextId'''}}[[Category:DiagCom]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetParameterTextId | The text id of the parameter | [[Term]] | [[DiagCom|OTX DiagCom extension]] | [[Parameter related terms]] | - | - }} | + | {{ClassificationActivity | GetParameterTextId | The text id of the parameter | [[Term]] | [[Extensions.DiagCom|OTX DiagCom extension]] | [[Parameter related terms]] | - | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 9: | Line 9: | ||
== Description == | == Description == | ||
− | The '''GetParameterTextId''' term accepts a [[ParameterTerm]] and returns the text id of the [[Parameter]]. | + | The '''GetParameterTextId''' term accepts a [[ParameterTerm]] and returns the text id of the [[Extensions.DiagCom.Parameter|Parameter]]. |
− | {{TermReturnValue| [[String]] | The text id of the parameter.}} | + | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | The text id of the parameter.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| Parameter | [[Parameter]] | [[Term]] | - | [1] | The [[Parameter]] object.}} | + | {{TableRowPropertie1| Parameter | [[Extensions.DiagCom.Parameter|Parameter]] | [[Term]] | - | [1] | The [[Extensions.DiagCom.Parameter|Parameter]] object.}} |
|} | |} | ||
Line 33: | Line 33: | ||
== See also == | == See also == | ||
− | [[GetParameterName]] <br/> | + | [[Extensions.DiagCom.GetParameterName|GetParameterName]] <br/> |
− | [[GetParameterSemantic]] <br/> | + | [[Extensions.DiagCom.GetParameterSemantic|GetParameterSemantic]] <br/> |
− | [[GetParameterByPath]] <br/> | + | [[Extensions.DiagCom.GetParameterByPath|GetParameterByPath]] <br/> |
− | [[GetParameterAsList]] <br/> | + | [[Extensions.DiagCom.GetParameterAsList|GetParameterAsList]] <br/> |
− | [[ExecuteDiagService]] | + | [[Extensions.DiagCom.ExecuteDiagService|ExecuteDiagService]] |
Revision as of 02:52, 15 February 2016
Contents
Classification
Name | GetParameterTextId |
Short Description | The text id of the parameter |
Class | Term |
Extension | OTX DiagCom extension |
Group | Parameter related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
StringTerm = DiagCom.GetParameterTextId(ParameterTerm);
Description
The GetParameterTextId term accepts a ParameterTerm and returns the text id of the Parameter.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
String | The text id of the parameter. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Parameter | Parameter | Term | - | [1] | The Parameter object. |
OTL Examples
DiagCom.DiagService DiagService1;
DiagCom.Parameter Parameter1;
String TextId;
DiagCom.ComChannel ComChannel1;
ComChannel1 = DiagCom.GetComChannel("LL_WheelDampeElectUDS", "EV_DRCONTITEMIC_001", false);
DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "SinglJob_FlashProgr");
Parameter1 = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagService1), {"IPA_LogLevel"});
TextId = DiagCom.GetParameterTextId(Parameter1);
See also
GetParameterName
GetParameterSemantic
GetParameterByPath
GetParameterAsList
ExecuteDiagService