Gets the document's keywords. The property value is null, if there are no keywords saved in the document.

Introduced: X13.

Syntax

public string[] DocumentKeywords { get; }

Examples

This example shows a simple variant of how to use the 'TXTextControl.LoadSettings.DocumentKeywords' property. Here, it is stored in a string array.

TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
string[] myKeywords = ls.DocumentKeywords;
//...

Limitations

Read only.