5 implementations of GetTextInRun
PresentationFramework (5)
System\Windows\Controls\PasswordTextNavigator.cs (1)
187int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
103int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
System\Windows\Documents\FixedTextPointer.cs (1)
122int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
System\Windows\Documents\NullTextNavigator.cs (1)
96int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
System\Windows\Documents\TextPointer.cs (1)
2398int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
27 references to GetTextInRun
PresentationFramework (27)
MS\Internal\Documents\TextBoxLine.cs (1)
118position.GetTextInRun(LogicalDirection.Backward, text, 0, runLength);
System\Windows\Controls\PasswordTextContainer.cs (1)
244return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
127return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\DocumentSequenceTextPointer.cs (3)
100/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/> 648/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/> 673return thisTp.ChildPointer.GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\FixedTextContainer.cs (1)
112return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\FixedTextPointer.cs (1)
119/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/>
System\Windows\Documents\ImmComposition.cs (2)
1401int copied = navigator.GetTextInRun(LogicalDirection.Backward, buffer, 0, buffer.Length); 1453int copied = navigator.GetTextInRun(LogicalDirection.Forward, buffer, 0, buffer.Length);
System\Windows\Documents\NullTextContainer.cs (1)
112return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\NullTextNavigator.cs (1)
93/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/>
System\Windows\Documents\Speller.cs (1)
1688position.GetTextInRun(LogicalDirection.Forward, _text, _textLength, runCount);
System\windows\Documents\TextEditorSpelling.cs (1)
266position.GetTextInRun(direction, buffer, 0, 1);
System\Windows\Documents\TextFindEngine.cs (2)
666navigator.GetTextInRun(direction, findText, findTextLength, runCount); 676navigator.GetTextInRun(
System\Windows\Documents\TextPointerBase.cs (8)
64getTextLength = position.GetTextInRun(direction, text, 0, textLength); 80charsCopied = thisPointer.GetTextInRun(direction, textBuffer, startIndex, count); 109charsCopied = thisPointer.GetTextInRun(direction, textBuffer, startIndex, maxCount); 621int actualCount = thisPosition.GetTextInRun(direction, textBuffer, /*startIndex:*/0, /*count:*/2); 1364if (position.GetTextInRun(LogicalDirection.Backward, neighborhood, 0, 1) == 1 && 1365position.GetTextInRun(LogicalDirection.Forward, neighborhood, 1, 1) == 1) 1427navigator.GetTextInRun(LogicalDirection.Forward, preceedingText, SelectionWordBreaker.MinContextLength - preceedingCount, runLength); 1444navigator.GetTextInRun(LogicalDirection.Forward, followingText, followingCount, runLength);
System\windows\Documents\TextSelection.cs (2)
488caretPosition.GetTextInRun(direction, charBuffer, 0, 1) == 1 && 501caretPosition.GetTextInRun(oppositeDirection, charBuffer, 0, 1) != 1 ||
System\Windows\Documents\TextStore.cs (1)
1493navigator.GetTextInRun(LogicalDirection.Forward, nextChars, 0, nextChars.Length);