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-документ може містити загальну інформацію, зокрема title, author і subject. Ця інформація призначена для каталогізації та пошуку документів у зовнішніх базах даних

 

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