Yt_RW_MyDataStruct
Yt_RW_MyDataStruct: STRUCT
| Element | Data Type | Description | Usage |
|---|---|---|---|
| File |
Yt_RW_MyDataArray |
Array that contains data to be read/written | MyData.File[0].XData |
| Version |
STRING | If file versioning is used, apply a unique value to allow the identification of different file formats | MyData.Version |
| Columns | INT | Configure this value to indicate the number of columns in the data file |
MyData.Columns |
| Records | INT | This value will be updated by the function as the data is processed |
MyData.Records |
| MaxRecords | INT | Initialize MaxRecords to the NUMBER OF ELEMENTS defined in the MyDataArray definition |
MyData.MaxRecords |
Yt_RW_MyDataArray: ARRAY
| Array Name | Data Type | Range | Description | Usage |
|---|---|---|---|---|
| Yt_RW_MyDataArray |
Yt_RW_MyData |
0..3000 | Data array which contains data to be read/written | MyData.File[0].XData |
Yt_RW_MyData: STRUCT
| Element | Data Type | Description | Usage |
|---|---|---|---|
| XData |
LREAL | Column 1 data | MyData.File[0].XData |
| YData |
LREAL | Column 2 data | MyData.File[0].YData |
| ZData | LREAL | Column 3 data | MyData.File[0].ZData |
| WData | LREAL | Column 4 data | MyData.File[0].WData |