5 implementations of GetTextInRun
PresentationFramework (5)
System\Windows\Controls\PasswordTextNavigator.cs (1)
188int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
106int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
System\Windows\Documents\FixedTextPointer.cs (1)
125int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
System\Windows\Documents\NullTextNavigator.cs (1)
99int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
System\Windows\Documents\TextPointer.cs (1)
2399int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
27 references to GetTextInRun
PresentationFramework (27)
MS\Internal\Documents\TextBoxLine.cs (1)
119position.GetTextInRun(LogicalDirection.Backward, text, 0, runLength);
System\Windows\Controls\PasswordTextContainer.cs (1)
245return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
136return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\DocumentSequenceTextPointer.cs (3)
103/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/> 652/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/> 677return thisTp.ChildPointer.GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\FixedTextContainer.cs (1)
120return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\FixedTextPointer.cs (1)
122/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/>
System\Windows\Documents\ImmComposition.cs (2)
1415int copied = navigator.GetTextInRun(LogicalDirection.Backward, buffer, 0, buffer.Length); 1467int copied = navigator.GetTextInRun(LogicalDirection.Forward, buffer, 0, buffer.Length);
System\Windows\Documents\NullTextContainer.cs (1)
113return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\NullTextNavigator.cs (1)
96/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/>
System\Windows\Documents\Speller.cs (1)
1692position.GetTextInRun(LogicalDirection.Forward, _text, _textLength, runCount);
System\windows\Documents\TextEditorSpelling.cs (1)
267position.GetTextInRun(direction, buffer, 0, 1);
System\Windows\Documents\TextFindEngine.cs (2)
668navigator.GetTextInRun(direction, findText, findTextLength, runCount); 678navigator.GetTextInRun(
System\Windows\Documents\TextPointerBase.cs (8)
65getTextLength = position.GetTextInRun(direction, text, 0, textLength); 81charsCopied = thisPointer.GetTextInRun(direction, textBuffer, startIndex, count); 110charsCopied = thisPointer.GetTextInRun(direction, textBuffer, startIndex, maxCount); 622int actualCount = thisPosition.GetTextInRun(direction, textBuffer, /*startIndex:*/0, /*count:*/2); 1365if (position.GetTextInRun(LogicalDirection.Backward, neighborhood, 0, 1) == 1 && 1366position.GetTextInRun(LogicalDirection.Forward, neighborhood, 1, 1) == 1) 1428navigator.GetTextInRun(LogicalDirection.Forward, preceedingText, SelectionWordBreaker.MinContextLength - preceedingCount, runLength); 1445navigator.GetTextInRun(LogicalDirection.Forward, followingText, followingCount, runLength);
System\windows\Documents\TextSelection.cs (2)
501caretPosition.GetTextInRun(direction, charBuffer, 0, 1) == 1 && 514caretPosition.GetTextInRun(oppositeDirection, charBuffer, 0, 1) != 1 ||
System\Windows\Documents\TextStore.cs (1)
1497navigator.GetTextInRun(LogicalDirection.Forward, nextChars, 0, nextChars.Length);