
Software
85
This operator can only be used for the boolean data type.
<
Less than
x < y
Check if x is less than y. This operator can be used for integer or double data
types. Returns true or false.
<=
Less than or equal
x <= y
Check if x is less than y or equal. This operator can be used for integer or
double data types. Returns true or false.
>
Greater than
x > y
Check if x is greater than y. This operator can be used for integer or double
data types. Returns true or false.
>=
Greater than or equal
x >= y
Check if x is greater than y or equal. This operator can be used for integer or
double data types. Returns true or false.
9.6.4.5
Procedure
A procedure is a set of commands which will be executed. A procedure can be called with
additional variables or a values in brackets e.g. a text, a number etc. A procedure executes the
command set and returns no value.
ShowMessage(AMessage: String);
Shows a message box with <AMessage> as text and an OK button. The routine waits
until the OK button in the message box will be clicked on.
Sample:
var
AMessage: string;
…
begin
AMessage:=’Your Text’;
ShowMessage(AMessage);
…
end.
ReportClear;
Clears the section “TestResults” in the report file. Create the Report by starting with
this command.
ReportAdd(AResult: String);
Summary of Contents for 2830
Page 1: ...2830 2831 Precision Liquid and Solid Dielectric Analyzer User Manual 4843477 M Version 3 0 ...
Page 7: ...Introduction VII 17 Conformity 113 18 Notes 114 ...
Page 8: ...VIII Introduction ...
Page 121: ...Conformity 113 17 Conformity ...
Page 122: ...114 Notes 18 Notes ...
Page 123: ...Notes 115 ...