PDFium Component Docs

Loaded Funktion

Denna API-post behåller identifierare, signaturer, kodblock och PDF-termer i ursprunglig form.
Komponent: TPdf  ·  Enhet: PDFium
Skrivskyddad flagga — True efter att PDF-bibliotekets DLL har laddats in i processen.

Syntax

function Loaded: Boolean;

Beskrivning

Returns True after the PDF library DLL has been loaded into the process.

The PDFium runtime must be loaded once per process; TPdf.LoadLibrary is called automatically on first Active := True.

Read at any time, including before any TPdf instance exists (it is a class function).

Anmärkningar

Exempel

if Pdf1.Active and Pdf1.Loaded then
  Memo1.Lines.Add('Loaded = True')
else
  Memo1.Lines.Add('Loaded = False');

Se även

LoadLibrary, UnloadLibrary, V8FeaturesAvailable