|
Determines whether the PDF document is include information.
Sintassi Delphi:
property ShowInfo: Boolean;
Sintassi C++:
__property bool ShowInfo;
Descrizione
Impostare ShowInfo su true per includere informazioni generali sul documento, come titolo, autore, date di creazione e modifica, oggetto e parole chiave. Altrimenti impostare ShowInfo su false
Example di codice
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
Vedi anche: Author, Keywords, Subject, Title
|