5 implementations of GetTextInRun
PresentationFramework (5)
System\Windows\Controls\PasswordTextNavigator.cs (1)
192int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
112int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
System\Windows\Documents\FixedTextPointer.cs (1)
130int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
System\Windows\Documents\NullTextNavigator.cs (1)
102int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
System\Windows\Documents\TextPointer.cs (1)
2404int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
27 references to GetTextInRun
PresentationFramework (27)
MS\Internal\Documents\TextBoxLine.cs (1)
126position.GetTextInRun(LogicalDirection.Backward, text, 0, runLength);
System\Windows\Controls\PasswordTextContainer.cs (1)
248return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
144return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\DocumentSequenceTextPointer.cs (3)
109/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/> 658/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/> 683return thisTp.ChildPointer.GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\FixedTextContainer.cs (1)
129return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\FixedTextPointer.cs (1)
127/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/>
System\Windows\Documents\ImmComposition.cs (2)
1423int copied = navigator.GetTextInRun(LogicalDirection.Backward, buffer, 0, buffer.Length); 1475int copied = navigator.GetTextInRun(LogicalDirection.Forward, buffer, 0, buffer.Length);
System\Windows\Documents\NullTextContainer.cs (1)
117return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
System\Windows\Documents\NullTextNavigator.cs (1)
99/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/>
System\Windows\Documents\Speller.cs (1)
1721position.GetTextInRun(LogicalDirection.Forward, _text, _textLength, runCount);
System\windows\Documents\TextEditorSpelling.cs (1)
268position.GetTextInRun(direction, buffer, 0, 1);
System\Windows\Documents\TextFindEngine.cs (2)
676navigator.GetTextInRun(direction, findText, findTextLength, runCount); 686navigator.GetTextInRun(
System\Windows\Documents\TextPointerBase.cs (8)
67getTextLength = position.GetTextInRun(direction, text, 0, textLength); 83charsCopied = thisPointer.GetTextInRun(direction, textBuffer, startIndex, count); 112charsCopied = thisPointer.GetTextInRun(direction, textBuffer, startIndex, maxCount); 624int actualCount = thisPosition.GetTextInRun(direction, textBuffer, /*startIndex:*/0, /*count:*/2); 1370if (position.GetTextInRun(LogicalDirection.Backward, neighborhood, 0, 1) == 1 && 1371position.GetTextInRun(LogicalDirection.Forward, neighborhood, 1, 1) == 1) 1433navigator.GetTextInRun(LogicalDirection.Forward, preceedingText, SelectionWordBreaker.MinContextLength - preceedingCount, runLength); 1450navigator.GetTextInRun(LogicalDirection.Forward, followingText, followingCount, runLength);
System\windows\Documents\TextSelection.cs (2)
504caretPosition.GetTextInRun(direction, charBuffer, 0, 1) == 1 && 517caretPosition.GetTextInRun(oppositeDirection, charBuffer, 0, 1) != 1 ||
System\Windows\Documents\TextStore.cs (1)
1508navigator.GetTextInRun(LogicalDirection.Forward, nextChars, 0, nextChars.Length);