In C# how can I move the cursor to the next word in a rich text box?. for example
given the sentence
“He is a boy”
let’s suppose that currently the cursor is positioned before “is” i.e. after “He” and I want to move it to the position before “a” i.e. after “is”.
can richtextbox.SelectionStart be used for performing such an action ?
if you don’t mind using SendKeys then teh below example will achieve your requirement