THotPDF.Subject 속성

 

THotPDF.Subject

THotPDF

 

맨 위  이전  다음

Determines information about the subject of the document.

 

Delphi 구문:

property Subject: AnsiString;

 

C++ 구문:

__property AnsiString Subject;

 

설명

PDF document는 document title, author, subject 같은 general information을 포함할 수 있습니다. 이 information은 external database에서 document를 catalogue하고 search하는 데 도움을 주기 위한 것입니다

 

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

 

참조: Author, Keywords, ShowInfo, Title