THotPDF.Title Property

 

THotPDF.Title

THotPDF

 

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

Determines information about the title of the document.

 

Delphi syntax:

property Title: AnsiString;

 

C++ syntax:

__property AnsiString Title;

 

Περιγραφή

Ένα 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, Keywords, ShowInfo, Subject