THotPDF.Title Property

 

THotPDF.Title

THotPDF

 

先頭  前へ  次へ

Determines information about the title of the document.

 

Delphi syntax:

property Title: AnsiString;

 

C++ syntax:

__property AnsiString Title;

 

説明

PDF document には document title、author、subject などの general information を含めることができます。この information は external databases で documents を cataloguing および searching するために役立ちます

 

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