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 έγγραφο μπορεί να περιλαμβάνει γενικές πληροφορίες όπως τον τίτλο, τον συντάκτη και το θέμα του εγγράφου. Αυτές οι πληροφορίες προορίζονται να βοηθούν στην καταλογογράφηση και αναζήτηση εγγράφων σε εξωτερικές βάσεις δεδομένων

 

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