INT%HI_ChangeRow( HBJ in refToStruct, INT in indexClose, INT in indexOpen ) |
| refToStruct | Reference to the object of Structured variable type. |
| indexClose | Closed row. |
| indexOpen | Opened row. |
Return value is ERR_NO_ERROR when the function was successfully executed.
The function
%HI_ChangeRow can be also replaced by means of the functions
%HI_CloseRow a
%HI_OpenRow as follows:
INT _retCode INT _indexOpen INT _indexClose _retCode := %HI_ChangeRow(SV.Structure\HBJ, _indexClose, _indexOpen) |
Equivalent declaration:
INT _retCode INT _indexOpen INT _indexClose %HI_CloseRow(SV.Structure\HBJ, _indexClose) _retCode := %HI_OpenRow(SV.Structure\HBJ, _indexOpen) |