THotPDF.ShowInfo Property

 

THotPDF.ShowInfo

THotPDF

 

Góra  Poprzedni  Następny

Determines whether the PDF document is include information.

 

Delphi syntax:

property ShowInfo: Boolean;

 

C++ syntax:

__property bool ShowInfo;

 

Opis

Ustaw ShowInfo na true, aby dołączyć ogólne informacje o dokumencie, takie jak tytuł, autor, daty utworzenia i modyfikacji, temat oraz słowa kluczowe. W przeciwnym razie ustaw ShowInfo na 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

 

Zobacz też: Author, Keywords, Subject, Title