Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created February 26, 2025 11:34
Show Gist options
  • Save bjoerntx/9a54fb4ba20dd18087b0c4b9755b819b to your computer and use it in GitHub Desktop.
Save bjoerntx/9a54fb4ba20dd18087b0c4b9755b819b to your computer and use it in GitHub Desktop.
using TXTextControl;
TXTextControl.LoadSettings loadSettings = new TXTextControl.LoadSettings()
{
ApplicationFieldFormat = TXTextControl.ApplicationFieldFormat.MSWordTXFormFields
};
using (TXTextControl.ServerTextControl serverTextControl =
new TXTextControl.ServerTextControl())
{
serverTextControl.Create();
serverTextControl.Load("forms.docx",
TXTextControl.StreamType.WordprocessingML, loadSettings);
serverTextControl.Save("forms.pdf", TXTextControl.StreamType.AdobePDF);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment