Difference between revisions of "Extensions.DiagDataBrowsingPlus.TextTableElement"
Jump to navigation
Jump to search
(Created page with "{{DISPLAYTITLE:Data Type '''TextTableElement'''}}Category:DataTypeCategory:DiagDataBrowsingPlus == Classification == {{ClassificationDataType | TextTableElement | Is a...") |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
{{DISPLAYTITLE:Data Type '''TextTableElement'''}}[[Category:DataType]][[Category:DiagDataBrowsingPlus]] | {{DISPLAYTITLE:Data Type '''TextTableElement'''}}[[Category:DataType]][[Category:DiagDataBrowsingPlus]] | ||
== Classification == | == Classification == | ||
| − | {{ClassificationDataType | TextTableElement | Is an instance of the MCDTextTableElement interface | + | {{ClassificationDataType | TextTableElement | Is an instance of the MCDTextTableElement interface| [[Core.DataTypes.ComplexDataType|Complex Data Type]] | [[Core.DataTypes.ComplexDataType.ComplexType|ComplexType]] | - }} |
== Description == | == Description == | ||
| Line 9: | Line 9: | ||
String=Returns the LongName of the MCDTextTableElement (LongName is mandatory). | StringSample=<tt>String s = ToString(TextTableElementVariable); // Returns the LongName of the MCDTextTableElement. | String=Returns the LongName of the MCDTextTableElement (LongName is mandatory). | StringSample=<tt>String s = ToString(TextTableElementVariable); // Returns the LongName of the MCDTextTableElement. | ||
}} | }} | ||
| + | |||
| + | ==Sample== | ||
| + | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
| + | DiagDataBrowsingPlus.TextTableElement TextTableElementVariable; | ||
| + | </syntaxhighlight> | ||
Latest revision as of 09:12, 22 October 2018
Classification
| Name | TextTableElement |
| Short Description | Is an instance of the MCDTextTableElement interface |
| Class | Complex Data Type |
| Base Data Type | ComplexType |
| Default Value | Empty |
| Provide a Literal | No |
| SpecifiedBy | ISO 13209-3 |
| Standard Compliant | Yes |
Description
TextTableElement is an instance of the MCDTextTableElement interface. It provides the meta information of one element of a TextTable. It inherits from DbObject. The not existing properties like short name etc. always return an empty string.
Core Conversion
The following table shows the rules for conversion to another data type:
| Conversion | Result | Sample |
| ToBoolean | Undefined (should not be used) | |
| ToInteger | Undefined (should not be used) | |
| ToFloat | Undefined (should not be used) | |
| ToString | Returns the LongName of the MCDTextTableElement (LongName is mandatory). | String s = ToString(TextTableElementVariable); // Returns the LongName of the MCDTextTableElement. |
| ToByteField | Undefined (should not be used) |
Sample
DiagDataBrowsingPlus.TextTableElement TextTableElementVariable;