وثائق PDFiumVCL

Loaded property

يحافظ إدخال API هذا على المعرّفات والتواقيع وكتل الكود ومصطلحات PDF بصيغتها الأصلية.
Component: TPdf  ·  Unit: PDFium
Read-only flag — True after the PDF library DLL has been loaded into the process.

Syntax

property Loaded: Boolean; // read only

Description

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).

Remarks

Example

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

See Also

LoadLibrary, UnloadLibrary, V8FeaturesAvailable