THotPDF.Keywords Property

 

THotPDF.Keywords

THotPDF

 

先頭  前へ  次へ

Determines information about the person who created the document.

 

Delphi syntax:

property Author: AnsiString;

 

C++ syntax:

__property AnsiString Author;

 

説明

PDF ドキュメントには、タイトル、作成者、件名などの一般情報を含めることができます。この情報は、外部データベースでのドキュメントのカタログ化と検索を支援するためのものです

 

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