Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created June 23, 2023 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/8629f66c10f869f98169aea5432f2fc5 to your computer and use it in GitHub Desktop.
Save bjoerntx/8629f66c10f869f98169aea5432f2fc5 to your computer and use it in GitHub Desktop.
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