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; }
Public ReadOnly Property DocumentKeywords() As String()

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;
//...
'...
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
Dim myKeywords As String() = ls.DocumentKeywords
'...

Limitations

Read only.