IDSField interface | QSYS API Reference Guide
Describes the common operations over a field in a Data Structure.
Namespace: ASNA.QSys.Runtime Assembly: ASNA.QSys.Runtime.dll
Extends: doesn’t extend any other interfaces.
Properties
| Type | Name | Description |
|---|---|---|
| ILayout | Layout | Gets the field Layout. |
| Int32 | Length | Gets the field length. |
| String | Name | Gets the name of the field. |
| Int32 | Start | Gets the starting position in the Data Structure buffer. |
| Type | Type | Gets the type of the field |
| Object | Value | Gets or sets the value of the field. |
Methods
| Signature | Description |
|---|---|
| ClearField() | Clears the field to its default value. |
| Clone() | Creates a copy of this IDSField object |
| SetStartingPosition(Int32) | Sets the field starting position in the Data Structure buffer. |
void ClearField()
Clears the field to its default value.
void ClearField()
IDSField Clone()
Creates a copy of this IDSField object
IDSField Clone()
void SetStartingPosition(int start)
Sets the field starting position in the Data Structure buffer.
void SetStartingPosition(int start)
Parameters
| Type | Parameter name | Description |
|---|---|---|
| Int32 | start | The starting position of this field in the DataStructure buffer |