THotPDF.Keywords Property

 

THotPDF.Keywords

THotPDF

 

Sus  Anterior  Următor

Determines information about the person who created the document.

 

Delphi syntax:

property Author: AnsiString;

 

C++ syntax:

__property AnsiString Author;

 

Descriere

Un document PDF poate include informații generale precum titlul, autorul și subiectul documentului. Aceste informații sunt destinate să ajute la catalogarea și căutarea documentelor în baze de date externe.

 

Exemplu de cod

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