Created
February 26, 2025 11:34
-
-
Save bjoerntx/9a54fb4ba20dd18087b0c4b9755b819b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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