Home API Manuals About Forum
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

FoundedParamID

Returns the parameter ID from the last successful journal search performed by InJournal or InJournalBetweenTimes.

This value indicates the message type/source of the found journal entry.

Возвращает ID параметра из последнего успешного поиска в журнале через InJournal или InJournalBetweenTimes.

Значение указывает на тип/источник найденной записи журнала.

Pascal

function FoundedParamID: Integer;

Python

def FoundedParamID() -> int: ...

Pascal Example

begin
  if InJournal('You', -1) > 0 then
    AddToSystemJournal('FoundedParamID = ' + IntToStr(FoundedParamID));
end.

Python Example

if InJournal('You', -1) > 0:
    AddToSystemJournal(f'FoundedParamID = {FoundedParamID()}')

See Also

InJournal, InJournalBetweenTimes