THotPDF.ShowInfo Property

 

THotPDF.ShowInfo

THotPDF

 

Haut  Précédent  Suivant

Détermine si le document PDF inclut les informations du document

 

Syntaxe Delphi :

property ShowInfo: Boolean;

 

Syntaxe C++ :

__property bool ShowInfo;

 

Description

Définissez ShowInfo sur true pour inclure dans le document des informations générales telles que le titre, l’auteur,  les dates de création et de modification, le sujet et les mots-clés. Sinon, définissez ShowInfo sur false

 

Exemple de code

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

 

Voir aussi: Author, Keywords, Subject, Title