THotPDF.ShowInfo Property

 

Properti THotPDF.ShowInfo

THotPDF

 

Atas  Sebelumnya  Berikutnya

Menentukan apakah dokumen PDF menyertakan informasi

 

Delphi syntax:

property ShowInfo: Boolean;

 

C++ syntax:

__property bool ShowInfo;

 

Deskripsi

Atur ShowInfo ke true untuk menyertakan informasi umum tentang dokumen, seperti judul, penulis, tanggal pembuatan dan modifikasi, subjek, dan kata kunci. Jika tidak, atur ShowInfo ke false

 

Contoh kode

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

 

Lihat juga: Author, Keywords, Subject, Title