Classification
OTL Syntax
/// Local Declarations
StructureSignature StructureVariable;
/// Flow
StructureVariable = DataType.StructureCreate(OtxLink);
Description
StructureCreate is a term that creates a new, initialised instance of the specified structure.
Return Value
The Term returns the value, see table below.
|
|
In OTX, Terms are categorized according to its return data type!
|
Data Type |
Description
|
Structure |
Returns a new, initialised instance of the specified structure.
|
Properties
Name |
Data Type |
Class |
Default |
Cardinality |
Description
|
structureType |
OtxLink |
- |
- |
[1..1] |
Refers to a certain StructureSignature.
|
OTL Examples
package DataType.StructureSignature StructureSignature1(Integer StructureElement1, Boolean StructureElement2 = false);
/// Global Declarations
public procedure main()
{
/// Local Declarations
StructureSignature1 Structure;
/// Flow
Structure = DataType.StructureCreate(StructureSignature1);
}
See also
EnumerationContainsName
EnumerationContainsValue
EnumerationGetEntryList
GetEnumerationByName
GetEnumerationByValue
StructureCopy