THotPDF.ShowInfo-ominaisuus

THotPDF.ShowInfo

THotPDF

Ylös Edellinen Seuraava

Määrittää, sisältääkö PDF-asiakirja tietoja

Delphi syntax:

property ShowInfo: Boolean;

C++ syntax:

__property bool ShowInfo;

Kuvaus

Aseta ShowInfo arvoon true sisällyttääksesi dokumenttiin yleisiä tietoja, kuten sen otsikon, tekijän, luonti- ja muokkauspäivämäärät, aiheen ja avainsanat. Muussa tapauksessa aseta ShowInfo arvoon 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

Katso myös: Author, Keywords, Subject, Title