Limitations
Microsoft Word and RTF only.
Specifies an array of strings containing the type names of fields which are to be imported. This property is only taken into account, if the Load
Introduced: 14.0.
public string[] ApplicationFieldTypeNames { get; set; }
Public Property ApplicationFieldTypeNames() As String()
The following example shows how to use the Load
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
ls.ApplicationFieldFormat = TXTextControl.ApplicationFieldFormat.MSWord;
string [] fields = new string[]{ "MERGEFIELD" }; // the field types are set in this line
ls.ApplicationFieldTypeNames = fields;
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
ls.ApplicationFieldFormat = TXTextControl.ApplicationFieldFormat.MSWord
Dim fields As String() = New String() {"MERGEFIELD"} ' the field types are set in this line
ls.ApplicationFieldTypeNames = fields
Microsoft Word and RTF only.