THotPDF.ShowInfo svojstvo

 

THotPDF.ShowInfo

THotPDF

 

Vrh  Prethodno  Sledeće

Određuje da li PDF dokument uključuje informacije

 

Delphi syntax:

property ShowInfo: Boolean;

 

C++ syntax:

__property bool ShowInfo;

 

Opis

Podesite ShowInfo na true da biste uključili opšte informacije o dokumentu, kao što su naslov, autor, datumi kreiranja i izmene, tema i ključne reči. U suprotnom podesite 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