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; }
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;
Microsoft Word and RTF only.