FIND_TRUE action
Related pages:
FIND_TRUE _index, maxIndex, _retCode, find expression
_index | in/out | Identifier (local variable) of Int type. Control variable for expression. |
maxIndex | in | Identifier (local variable) of Int type. Maximal value of the control variable. |
_retCode | out | Identifier of Int type - return code. |
find expression | in | Expression of BOOL type. |
It is necessary, to make the expression find expression dependent on a value of the control value. If not, the action generates the error _ERR_LOCAL_VAR_NFOUND.
As you can see in the example, the action may be taken advantage for searching structures.
RECORD (SD.RecordDef) _struct INT _index INT _maxIndex INT _retCode .... ; search for a row containing the text "hello" in the column Text _index := 1 ; search from the first row _maxIndex := _struct\DIM FIND_TRUE _index, _maxIndex, _retCode, _struct[_index]^Text="hello" IF _retCode # _ERR_NO_ERROR THEN ; the error retCode occurred in row index ELSIF _index = _maxIndex+1 THEN ; required row not found ELSE ; the row_index contains the text "hello" in the column Text ENDIF
Related pages:
0 komentárov