SETDT_LINEOBJ action
Related pages:
], [axisNr],
bSilent
HI_SETDT_LINEOBJ graph_RefId, lineNr, newObj, [axisNr], [bSilent]
graph | in | Reference to object of Graph type. |
graph_RefId | in | Value of reference variable associated to graphic object of Graf type. |
lineNr | in | Identifier of Int type. |
newObj | in | Reference to object or reference to one value of historical value. |
axisNr | in | Int type - number of axis associated to given process. If number is not specified (or its value is -1), number of axis will not be changed in graph configuration. |
retCode | out | Optional identifier of Int type - return code. |
bSilent | in | Optional identifier of Bool type. SETDT_LINEOBJ action: HI_SETDT_LINEOBJ: |
If the parameter retCode is not used, the action generates only the request for a change and does not wait for its real execution. If it is used, it is possible to test the action success (_ERR_NO_ERROR).
The action can be of two versions:
Warning:
The configuration change by SETDT_LINEOBJ without waiting on result
of the operation can collide with following script commands for graph.
For example:
SETDT_LINEOBJ D.Test, 1, Min %HI_SetGraphTimes(_Graph, _BT, _ET, @TRUE) |
can caused that time is set before coming the configuration change which sets time according to graph definition.
INT _retCode
SETDT_LINEOBJ D.Graph, 2, Sec, _retCode ; Action success test IF _retCode = _ERR_NO_ERROR THEN ; Change executed ELSE ; Error ENDIF
; Disconnecting the object ALIAS _empty SETDT_LINEOBJ D.Graph, 2, _empty
; Connecting of object Sec on the third process in graph T.Graf, where the number of axis is 5 ; The action do not wait on its real executing SETDT_LINEOBJ T.Graf, 3, Sec,, 5 ; The action waits on its real executing, configuration change is made inconspicuously SETDT_LINEOBJ T.Graf, 3, Sec, _retCode, 5, @TRUE
Related pages:
0 komentárov