THotPDF.Author Property

 

THotPDF.Author

THotPDF

 

Κορυφή  Προηγούμενο  Επόμενο

Determines information about the person who created the document.

 

Σύνταξη Delphi:

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

 

Δείτε επίσης: Author, Keywords, ShowInfo, Subject, Title