THotPDF.ShowInfo Property

 

THotPDF.ShowInfo

THotPDF

 

Hore  Predchádzajúce  Ďalej

Determines whether the PDF document is include information.

 

Delphi syntax:

property ShowInfo: Boolean;

 

C++ syntax:

__property bool ShowInfo;

 

Opis

Nastavte ShowInfo na true, ak chcete do dokumentu zahrnúť všeobecné informácie, ako sú názov, autor, dátumy vytvorenia a úpravy, predmet a kľúčové slová. Inak nastavte ShowInfo na 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