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, щоб додати до документа загальну інформацію, зокрема title, author,  creation and modification dates, subject і keywords. Інакше встановіть ShowInfo у false

 

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