CLOSE action
Related pages:
CLOSE grObjIdent [INSTANCE instanceExprInt]
CLOSE grObjIdent ON procIdent [INSTANCE instanceExprInt]
CLOSE grObjIdent ON ALL [INSTANCE instanceExprInt]
CLOSE DIRECT
grObjIdent | in | Reference to an object of Graph, Picture or Composition types. |
procIdent | in | Identifier of a Process type object (Human Interface). |
instanceExprInt | in | Expression of Int type, which specifies the object instance number. |
BEGIN ALIAS _newGraph INT _newGraphHBJ SET _newGraph AS D.graf IF _newGraph\HBJ = 0 THEN ELSE OPEN _newGraph ; opening a graph in SELF.HIP process DELAY 2[s] CLOSE _newGraph ; closing a graph in SELF.HIP process ENDIF END
BEGIN ALIAS _newGraph INT _newGraphHBJ SET _newGraph AS D.graf IF _newGraph\HBJ = 0 THEN ELSE OPEN _newGraph ON ALL INSTANCE 0 ; opening the first instance OPEN _newGraph ON ALL INSTANCE 1 ; opening the second instance DELAY 2[s] CLOSE _newGraph ON ALL INSTANCE 1 ; closing the second instance ENDIF END
BEGIN ALIAS _newGraph INT _newGraphHBJ SET _newGraph AS D.graf IF _newGraph\HBJ = 0 THEN ELSE OPEN _newGraph ON srvskol1v.HIP INSTANCE 0 ; opening the first instance OPEN _newGraph ON srvskol1v.HIP INSTANCE 1 ; opening the second instance DELAY 2[s] CLOSE _newGraph ON srvskol1v.HIP INSTANCE 1 ; closing the second instance ENDIF END
Related pages:
Pridať komentár