THotPDF.Subject Property

 

THotPDF.Subject

THotPDF

 

Vrh  Prethodno  Sledeće

Određuje informacije o predmetu dokumenta

 

Delphi syntax:

property Subject: AnsiString;

 

C++ syntax:

__property AnsiString Subject;

 

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