Afzaal Ahmad Zeeshan
Вы можете использовать RichTextBox.CaretPosition
[^] свойство для доступа к текущему индексу каретки внутри содержимого.
Следующий код был взят из MSDN,
// Create a new FlowDocument, and add 3 paragraphs.
FlowDocument flowDoc = new FlowDocument();
flowDoc.Blocks.Add(new Paragraph(new Run("Paragraph 1")));
flowDoc.Blocks.Add(new Paragraph(new Run("Paragraph 2")));
flowDoc.Blocks.Add(new Paragraph(new Run("Paragraph 3")));
// Set the FlowDocument to be the content for a new RichTextBox.
RichTextBox rtb = new RichTextBox(flowDoc);
// Get the current caret position.
TextPointer caretPos = rtb.CaretPosition;
// Set the TextPointer to the end of the current document.
caretPos = caretPos.DocumentEnd;
// Specify the new caret position at the end of the current document.
rtb.CaretPosition = caretPos;
Вы можете видеть, что это лишь некоторые из методов, с помощью которых вы можете манипулировать позицией каретки внутри документа, вы можете получить эту позицию, а также установить ее.