TRANSCOLTOROW _src^_iColSrc, _dst[_row]^_iColDst |
| _src | in | RECORD type - sources structure. |
| _iColSrc | in | INT type - index of source structure column. |
| _dst | in | RECORD type - destination structure. |
| _row | in | INT type - destination row index. |
| _iColDst | in | INT type - index of destination structure column. |
; TRANSCOLTOROW _src^_iColSrc, _dst[_row]^_iColDst INT _iRow INT _iCol _iCol := _iColDst FOR _iRow = 1 TO _src\DIM DO_LOOP _dst[_row]^_iCol:= _src[_iRow]^_iColSrc TIME _src[_iRow]^_iColSrc\TIM _iCol := _iCol + 1 END_LOOP |


After execution of the action:
