Created
June 23, 2023 13:25
-
-
Save bjoerntx/8629f66c10f869f98169aea5432f2fc5 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
foreach (IFormattedText part in tx.TextParts) { | |
if (part is TXTextControl.FootnoteText footnoteText) { | |
footnoteText.Selection.Start = 2; | |
footnoteText.Selection.Length = 8; | |
footnoteText.Selection.Load("<strong>Test</strong>", StringStreamType.HTMLFormat); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment