THotPDF.Author Property

 

THotPDF.Author

THotPDF

 

返回頂部  上一頁  下一頁

Determines information about the person who created the document.

 

Delphi 語法:

property Author: AnsiString;

 

C++ 語法:

__property AnsiString Author;

 

說明

PDF document 可以包含 title、author 與 subject 等 general information。這些 information 用於協助在外部 databases 中 cataloguing 與搜尋 documents

 

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

 

請參閱: Author, Keywords, ShowInfo, Subject, Title