THotPDF.Subject Property

 

THotPDF.Subject

THotPDF

 

Atas  Sebelumnya  Berikutnya

Determines information about the subject of the document.

 

Delphi syntax:

property Subject: AnsiString;

 

C++ syntax:

__property AnsiString Subject;

 

Deskripsi

Dokumen PDF dapat menyertakan informasi umum seperti judul, penulis, dan subjek dokumen. Informasi ini dimaksudkan untuk membantu pengatalogan dan pencarian dokumen di database eksternal.

 

Contoh kode

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