Um so etwas zu erfahren, markiert man den ausdruck "const" und drückt "F1",
aus Konstanten-Record und Konstaten-Array kann man dann folgendes zusammenwürfeln:
Delphi-Quellcode:
type
TStatus = record
Bereit : boolean;
Text : string;
end;
const
Status : Array[0..1] of TStatus = (
(A: true; B: 'Wir sind bereit'),
(A: false; B: 'Dauert noch'));