OTX Reference  
OpenTestSystem.Otx.Core.Actions.AppendByteField Class Reference

Appends ByteField values to the end of another ByteField. More...

Inheritance diagram for OpenTestSystem.Otx.Core.Actions.AppendByteField:
Inheritance graph

Public Attributes

ByteFieldTerm[] otherByteField
 List of ByteField terms which shall be appended. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Actions.ByteFieldModifier
ByteFieldVariable byteField
 Identifies a ByteField variable which shall be modified. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Actions.ActionRealisation
OtxLink validFor
 Validity of ActionRealisation. More...
 

Detailed Description

Appends ByteField values to the end of another ByteField.

Adds a ByteField at the end of a ByteField.

Syntax
AppendByteField(ByteFieldVariable byteField, { ByteFieldTerm otherByteField, ... });
ByteFieldTerm[] otherByteField
List of ByteField terms which shall be appended.
Definition: Core.cs:6522
ByteFieldVariable byteField
Identifies a ByteField variable which shall be modified.
Definition: Core.cs:6339
Example
// Local Declarations
ByteField ByteField1 = &00FF;
ByteField NewByteField1 = &F0;
// Flow
ByteField.AppendByteField(ByteField1, { NewByteField1, &F1 });

Member Data Documentation

◆ otherByteField

ByteFieldTerm [] OpenTestSystem.Otx.Core.Actions.AppendByteField.otherByteField

List of ByteField terms which shall be appended.