THotPDF.Title Property

 

THotPDF.Title

THotPDF

 

Arriba  Anterior  Siguiente

Determines information about the title of the document.

 

Sintaxis Delphi:

property Title: AnsiString;

 

Sintaxis C++:

__property AnsiString Title;

 

Descripción

Un documento PDF puede incluir información general como el título, el autor y el asunto. Esta información ayuda a catalogar y buscar documentos en bases de datos externas

 

Ejemplo de código

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

 

Ver también: Author, Keywords, ShowInfo, Subject