Related pages:
Prehľad
Nástroje obsahu
dstIdent := expression [TIME timeExpression]
dstIdent |
in |
Values destination (row identifier or whole structure identifier). |
expression |
in |
Expression defining a value. |
TIME timeExpression |
in |
Expression (AbsTime) defining the time of the value occurrence (optional parameter). |
TIME
timeExpression
will be used for the time of when the value is generated. dstIdent
is the identifier of one value of:
expression
must be given
type. If not, the script will attempt to convert the value into the
correct type. If it is not successful, then the result value will be invalid. RECORD (SD.RecordDef) _lArr REDIM _lArr[10] _lArr[2]^Int := 1
ALIAS _a SET _a AS U.Int _a := 1 WAIT
ALIAS (SD.RecordDef) _aArr SET _aArr AS SV.Structure _aArr[2]^Int := 1 WAIT
Example:
INT _prevValue _prevValue := U.Int ; assign previous value U.Int := U.Int + 1 ; add the value of 1 to object value IF U.Int = _prevValue THEN ; check the value ; the assignment has not been executed ELSE ; the assignment has been executed ENDIF
Related pages:
Pridať komentár