LowJournal
Returns the line index of the oldest journal entry.
Returns -1 if the journal is empty.
This value together with HighJournal defines the full range of available journal entries.
Возвращает индекс строки самой старой записи журнала.
Возвращает -1, если журнал пуст.
Это значение вместе с HighJournal определяет полный диапазон доступных записей журнала.
function LowJournal: Integer;
def LowJournal() -> int: ...
begin
AddToSystemJournal('Journal range: ' +
IntToStr(LowJournal) + ' .. ' + IntToStr(HighJournal));
end.
AddToSystemJournal(f'Journal range: {LowJournal()} .. {HighJournal()}')