I can create a Fast Color Text Box in C# and add text to it easily:
FastColoredTextBox tb = new FastColoredTextBox();
this.Controls.Add(tb);
tb.Location = new Point(10, 10);
tb.Visible = true;
tb.Text = "This is some text to display in the FCTB.";
I don't understand how to change just one word of that text to a different color.
I don't want to identify the word via syntax, my application is more like a word processor where the user wants color to emphasize a word.
For instance, how can I change the word "some" in the above code segment to appear in green instead of black?
Thanks
I finally found the member function that I was looking for.
Here is how to do it.