Difference between revisions of "Extensions.Util.CopyByteField"
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
== OTL Syntax == | == OTL Syntax == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | + | /// Local Declarations | |
+ | ByteField ByteFieldVariable; | ||
+ | /// Flow | ||
+ | ByteFieldVariable = Util.CopyByteField(ByteFieldTerm); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 21: | Line 24: | ||
== OTL Examples == | == OTL Examples == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
+ | /// Local Declarations | ||
+ | |||
ByteField ByteField1; | ByteField ByteField1; | ||
Revision as of 09:19, 25 October 2018
Contents
Classification
Name | CopyByteField |
Short Description | Copies the byteField |
Class | Term |
Extension | OTX Util extension |
Group | Util related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
/// Local Declarations
ByteField ByteFieldVariable;
/// Flow
ByteFieldVariable = Util.CopyByteField(ByteFieldTerm);
Description
The OTX CopyByteField term returns a ByteField which is a copy of the <byteField> 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 |
ByteField | The ByteField which is a copy of the <byteField> parameter. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Term | - | Term | - | [1..1] | Represents the ByteField which shall be copied. |
OTL Examples
/// Local Declarations
ByteField ByteField1;
/// Flow
ByteField1 = Util.CopyByteField(&0123456789ABCDEF);
See also
Compare
GetRandomNumber
IsInitialized
ListIndexOf
ListIndexOfAny
ListReverse
ListSort
Max
Min
StringFormat