Limitations
Read only.
Gets a dictionary with all user-defined document properties contained in the loaded document. The property's value is an object of the type User
Introduced: X14.
public UserDefinedPropertyDictionary UserDefinedDocumentProperties { get; }
Public ReadOnly Property UserDefinedDocumentProperties() As UserDefinedPropertyDictionary
This example demonstrates an easy use of the 'TXText
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
TXTextControl.UserDefinedPropertyDictionary myDefinedDocProperties = ls.UserDefinedDocumentProperties;
if (myDefinedDocProperties == null) {
System.Windows.Forms.MessageBox.Show("This document does not contain any user-defined properties");
}
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
Dim myDefinedDocProperties As TXTextControl.UserDefinedPropertyDictionary = ls.UserDefinedDocumentProperties
If myDefinedDocProperties Is Nothing Then
System.Windows.Forms.MessageBox.Show("This document does not contain any user-defined properties")
End If
Read only.