Limitations
Read only.
Gets the document's keywords. The property value is null, if there are no keywords saved in the document.
Introduced: X13.
public string[] DocumentKeywords { get; }Public ReadOnly Property DocumentKeywords() As String()This example shows a simple variant of how to use the 'TXText
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
string[] myKeywords = ls.DocumentKeywords;
//...'...
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
Dim myKeywords As String() = ls.DocumentKeywords
'...Read only.