Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created January 23, 2023 16:00
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/9e059fddddf6a969d8b36cdd267a986c to your computer and use it in GitHub Desktop.
Save bjoerntx/9e059fddddf6a969d8b36cdd267a986c to your computer and use it in GitHub Desktop.
TXTextControl.ParagraphStyle par = new TXTextControl.ParagraphStyle("heading1");
par.Bold = true;
par.FontSize = 400;
par.FontName = "Arial";
par.ParagraphFormat.StructureLevel = 1;
textControl1.ParagraphStyles.Add(par);
textControl1.Selection.FormattingStyle = "heading1";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment