Last active
April 15, 2022 14:30
-
-
Save bjoerntx/689d4bcd7809ed6f4dd0a8594dd00e9f to your computer and use it in GitHub Desktop.
This file contains 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
TXTextControl.SaveSettings saveSettings = | |
new TXTextControl.SaveSettings() { | |
Author = "Susan Paul", | |
CreationDate = DateTime.Now, | |
CreatorApplication = "TX Text Control", | |
DocumentKeywords = new string[] { "Summary", "Report" }, | |
DocumentSubject = "Detailed summary report 2022", | |
DocumentTitle = "Sales Report 2022" | |
}; | |
textControl1.Save("output.docx", | |
TXTextControl.StreamType.WordprocessingML, saveSettings); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment