Created
November 18, 2022 21:58
-
-
Save bjoerntx/c1e51e3d3d3468050e1fbc16c8520114 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 (SubTextPart subTextPart in textControl1.SubTextParts) { | |
if (subTextPart.Name == "SubTextPart2") { | |
textControl1.Select(subTextPart.Start - 1, subTextPart.Length); | |
textControl1.Selection.Text = ""; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment