THotPDF.Author Property

 

THotPDF.Author

THotPDF

 

Vrh  Prethodno  Sledeće

Određuje informacije o osobi koja je kreirala dokument

 

Delphi syntax:

property Author: AnsiString;

 

C++ syntax:

__property AnsiString Author;

 

Opis

PDF dokument može da sadrži opšte informacije kao što su naslov dokumenta, autor i predmet. Ove informacije služe za katalogizaciju i pretragu dokumenata u spoljnim bazama podataka

 

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, ShowInfo, Subject, Title