THotPDF.Keywords Property

 

THotPDF.Keywords

THotPDF

 

Góra  Poprzedni  Następny

Determines information about the person who created the document.

 

Delphi syntax:

property Author: AnsiString;

 

C++ syntax:

__property AnsiString Author;

 

Opis

Dokument PDF może zawierać ogólne informacje, takie jak tytuł, autor i temat dokumentu. Informacje te pomagają katalogować i wyszukiwać dokumenty w zewnętrznych bazach danych.

 

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

 

Zobacz też: Author, ShowInfo, Subject, Title