|
Determines whether the PDF document is include information.
Delphi syntax:
property ShowInfo: Boolean;
C++ syntax:
__property bool ShowInfo;
תיאור
הגדר ShowInfo ל-true כדי לכלול מידע כללי על המסמך, כגון title, author, תאריכי creation ו-modification, 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
|