The Keywords Property is available as an add-on to the LEADTOOLS Document and Medical Imaging toolkits.
Gets or sets the keywords to be used in the resulting PDF document.| Visual Basic (Declaration) | |
|---|---|
Public Property Keywords As String | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As PdfDocumentOptions Dim value As String instance.Keywords = value value = instance.Keywords | |
| C# | |
|---|---|
public string Keywords {get; set;} | |
Property Value
A System.String which contains the keywords associated with the PDF document. To reset the keywords value, use either an empty string or a null reference (Nothing in Visual Basic)The keywords for any PDF document can be retrieved by PDF viewers. Note that keywords can be particularly useful for search and indexing engines when PDF classifying documents and will always be used as part of the document metadata.
PDF uses commas or dots to separate the different keywords in the document. For example, to use One, Two, Three as the keywords, pass a string in one of the following format: "One,Two,Three" or "One.Two.Three".
LEADTOOLS Document writers supports the following PDF properties:
Note that Keywords is not supported when PdfDocumentOptions.DocumentType is PdfDocumentType.PdfA.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code