THotPDF.ShowInfo Property

 

THotPDF.ShowInfo

THotPDF

 

Viršus  Ankstesnis  Kitas

Determines whether the PDF document is include information.

 

Delphi syntax:

property ShowInfo: Boolean;

 

C++ syntax:

__property bool ShowInfo;

 

Aprašas

Nustatykite ShowInfo į true, kad į dokumentą būtų įtraukiama bendra informacija apie dokumentą, tokia kaip jo pavadinimas, autorius,  sukūrimo ir modifikavimo datos, tema ir raktiniai žodžiai. Kitu atveju nustatykite ShowInfo į false

 

Code Example

HPDF.Title := 'HotPDF Library Manual';
HPDF.Author := 'LosLab Software Developer';
HPDF.Subject := 'PDF generation component';
HPDF.Keywords := 'PDF, library, component, Delphi';
HPDF.ShowInfo := true;  // Show document properties in PDF viewer

 

See also: Author, Keywords, Subject, Title