THotPDF.ShowInfo Property

 

THotPDF.ShowInfo

THotPDF

 

Горе  Предишна  Следваща

Determines whether the PDF document is include information.

 

Delphi syntax:

property ShowInfo: Boolean;

 

C++ syntax:

__property bool ShowInfo;

 

Описание

Задайте ShowInfo на true, за да включите обща информация за документа, като заглавие, автор, дати на създаване и модификация, тема и ключови думи. В противен случай задайте ShowInfo на false

 

Примерен код

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