THotPDF.Keywords Property

 

THotPDF.Keywords

THotPDF

 

Inizio  Precedente  Successivo

Determines information about the person who created the document.

 

Sintassi Delphi:

property Author: AnsiString;

 

Sintassi C++:

__property AnsiString Author;

 

Descrizione

Un documento PDF può includere informazioni generali come titolo, autore e oggetto. Queste informazioni aiutano la catalogazione e la ricerca dei documenti in database esterni

 

Example di codice

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

 

Vedi anche: Author, ShowInfo, Subject, Title