Difference between revisions of "Core.Actions.AppendByteField"

From emotive
Jump to navigation Jump to search
(Created page with "Category:Core == Classification == {{ClassificationActivity | AppendByteField | Adds a new ByteField at the end of a ByteFields | Action | OTX Core library |...")
 
Line 2: Line 2:
 
== Classification ==
 
== Classification ==
 
{{ClassificationActivity | AppendByteField | Adds a new ByteField at the end of a ByteFields | [[Action]] | [[Core|OTX Core library]] | [[ByteFieldModifiers related actions]] | - | - }}
 
{{ClassificationActivity | AppendByteField | Adds a new ByteField at the end of a ByteFields | [[Action]] | [[Core|OTX Core library]] | [[ByteFieldModifiers related actions]] | - | - }}
 +
 +
== OTL Syntax ==
 +
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 +
ByteField.AppendByteField(ByteFieldTerm, {ByteFieldTerm, ...});
 +
</syntaxhighlight>
  
 
== Description ==
 
== Description ==
Line 12: Line 17:
 
{{TableRowPropertie2| OtherByteField | [[Term]] | [[Variable]] | - | [1] | The new ByteField, which is added to the ByteField}}
 
{{TableRowPropertie2| OtherByteField | [[Term]] | [[Variable]] | - | [1] | The new ByteField, which is added to the ByteField}}
 
|}
 
|}
 +
 +
== OTL Examples ==
 +
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 +
public procedure main()
 +
{
 +
  ByteField ByteField1 = &00FF;
 +
  ByteField NewByteField1 = &F000;
 +
 +
  ByteField.AppendByteField(ByteField1, {NewByteField1});
 +
}
 +
</syntaxhighlight>
  
 
== See also ==
 
== See also ==

Revision as of 08:51, 2 February 2015

Classification

Name AppendByteField
Short Description Adds a new ByteField at the end of a ByteFields
Class Action
Extension OTX Core library
Group ByteFieldModifiers related actions
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

ByteField.AppendByteField(ByteFieldTerm, {ByteFieldTerm, ...});

Description

The OTX AppendByteField activity at the end of a ByteFields adds a new ByteField.

Properties

Name Data Type Class Default Cardinality Description
ByteField ByteField Variable - [1] Variable of type ByteField to which to add the new ByteFIeld
OtherByteField Term Variable - [1] The new ByteField, which is added to the ByteField

OTL Examples

public procedure main()
{
   ByteField ByteField1 = &00FF;
   ByteField NewByteField1 = &F000;

   ByteField.AppendByteField(ByteField1, {NewByteField1});
}

See also

Assignment
ProcedureCall
ShiftRight
ShiftLeft
SetBit
ReplaceSubByteField
ListConcatenate
ListAppendItems
ListInsertItems
ListRemoveItems
ListClear
MapUnion
MapPutItems
MapRemoveItems
MapClear