|
Determines whether the PDF document is include information.
Delphi syntax:
property ShowInfo: Boolean;
C++ syntax:
__property bool ShowInfo;
説明
ShowInfo を true に設定すると、title、author、creation / modification dates、subject、keywords などの document general information を含めます。含めない場合は 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
関連項目: Author, Keywords, Subject, Title
|