Limitations
Microsoft Word and RTF only.
Specifies the format of text fields which are imported. The property's value can be one of the Application
Introduced: 14.0.
public ApplicationFieldFormat ApplicationFieldFormat { get; set; }Public Property ApplicationFieldFormat() As ApplicationFieldFormat| Member | Description |
|---|---|
| None | Default value. Textfields supported through other applications are not imported as Application |
| MSWord | Fields which are supported and defined through Microsoft Word are imported as Application |
| MSWord |
Fields which are supported and defined through Microsoft Word are imported as Application |
| High |
Fields which are supported and defined through the Heiler High |
The following example shows how to use the Load
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
ls.ApplicationFieldFormat = TXTextControl.ApplicationFieldFormat.MSWord; // here, the field format is set
string [] fields = new string[]{ "MERGEFIELD" };
ls.ApplicationFieldTypeNames = fields;Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
ls.ApplicationFieldFormat = TXTextControl.ApplicationFieldFormat.MSWord ' here, the field format is set
Dim fields As String() = New String() {"MERGEFIELD"}
ls.ApplicationFieldTypeNames = fieldsMicrosoft Word and RTF only.