I want to move the caret 4 positions to the right of where my caret currently is. I'm registered for PreviewKeyDown, and calling InsertTextInRun() when the tab key is captured, like so:

private void rtb_PreviewKeyDown(object sender, KeyEventArgs e)
{
    if (e.Key == Key.Tab)
    {
        rtb.CaretPosition.InsertTextInRun("    ");
        e.Handled = true;
    }
}

The problem is that the caret stays in place after the call to InsertTextInRun(). It does not move to the end of the new text, which is the behavior I want. How would I do this?


As an aside - yes, I know about the AcceptsTab property on RichTextBox. I'm choosing to ignore is and roll my own tab functionality because tabbing with AcceptsTab has a nasty side effect of indenting text on subsequent lines, which is not what I want.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

I've just bumped into the same problem. It seems final caret position depends on which way it was moving right before the insert.

Following code makes sure (3.5sp1) that after insert, the cursor will be to the right of the inserted text:

 rtb.CaretPosition = rtb.CaretPosition.GetPositionAtOffset(0, LogicalDirection.Forward);
rtb.CaretPosition.InsertTextInRun(text);

Note that caret's LogicalDirection property may (and has to) be changed by this; it is not enough to simply create correct TextPointer.

link|improve this answer
feedback

Use the GetInsertionPosition() method on the CaretPosition TextPointer. This will allow you to insert the text before the caret.

private void rtb_PreviewKeyDown(object sender, KeyEventArgs e)
{
    if (e.Key == Key.Tab)
    {
        rtb.CaretPosition.GetInsertionPosition(LogicalDirection.Backward).InsertTextInRun("    ");
        e.Handled = true;
    }
}
link|improve this answer
Wow, I must have missed that! I'll give that a try shortly, thanks! :) – unforgiven3 Mar 23 '10 at 13:40
Sorry, no dice. The caret did not move to the end of the inserted text. – unforgiven3 Mar 24 '10 at 1:42
feedback

To test, you could try forcing the movement yourself:

rtb.CaretPosition = rtb.Document.ContentEnd;

If that works, you'll probably have to implement additional logic for situations where the tab is not at the end of the content.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.