LineTextFont
Returns the font ID of the last matched journal entry.
This property is updated after InJournal, InJournalBetweenTimes, Journal, or LastJournalMessage calls.
Возвращает ID шрифта последней найденной записи журнала.
Это свойство обновляется после вызовов InJournal, InJournalBetweenTimes, Journal или LastJournalMessage.
function LineTextFont: Word;
def LineTextFont() -> int: ...
begin
if InJournal('hello') >= 0 then
AddToSystemJournal('Font: ' + IntToStr(LineTextFont));
end.
if InJournal('hello') >= 0:
AddToSystemJournal(f'Font: {LineTextFont()}')