|
Determines whether the PDF document is include information.
Syntaxe Delphi:
property ShowInfo: Boolean;
Syntaxe C++:
__property bool ShowInfo;
Popis
Nastavte ShowInfo na true, chcete-li do dokumentu zahrnout obecné informace o dokumentu, například název, autora, data vytvoření a změny, předmět a klíčová slova. Jinak nastavte ShowInfo na false
Příklad kódu
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
Viz také: Author, Keywords, Subject, Title
|