Click to expand/collapse this hidden textFieldValue(Name:string):string;

Function

In EscapeE, FIELDVALUE will return the value of a mark-up or "composite" field.

Example

s:=FieldValue('{field1}');

In the Windows RS2 JIT compiler, FIELDVALUE will return an empty string. It can be used to detect the supporting platform.

Example

if fieldvalue('{_Iname}')='' then
begin
 showmessage('Please open with RedTitan EscapeE',3000);
 halt(1);
end;

Click to expand/collapse this hidden textPred(I:number):number;

Function

The PRED function is equivalent to the assignment I:=I-1;

See also SUCC function, below.

Example Table example: Variable data.

Click to expand/collapse this hidden textSucc(I:number):number;

Function

The SUCC function is equivalent to the assignment I:=I+1;

See also PRED function, above.