THotPDF.Keywords Property

 

THotPDF.Keywords

THotPDF

 

למעלה  הקודם  הבא

Determines information about the person who created the document.

 

Delphi syntax:

property Author: AnsiString;

 

C++ syntax:

__property AnsiString Author;

 

תיאור

מסמך PDF עשוי לכלול מידע כללי כגון title, author ו-subject של המסמך. מידע זה מיועד לסייע בקטלוג ובחיפוש מסמכים במסדי נתונים חיצוניים

 

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, ShowInfo, Subject, Title