Ok,let's say that i have this code
string word1 = "safdsa";
string word2 = "sdfafds";
string word3 = "asdas";
richTextBox1.AppendText(word + word2 + word3);
And i want word2(just for example) to be with different cursor.I mean,when i move the mouse pointer over the word2 i want to see another cursor instead of the default cursor.How to do that(if possible)?