5 implementations of GetTextInRun
PresentationFramework (5)
src\Framework\System\Windows\Controls\PasswordTextNavigator.cs (1)
194int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
src\Framework\System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
116int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
src\Framework\System\Windows\Documents\FixedTextPointer.cs (1)
136int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
src\Framework\System\Windows\Documents\NullTextNavigator.cs (1)
104int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
src\Framework\System\Windows\Documents\TextPointer.cs (1)
2424int ITextPointer.GetTextInRun(LogicalDirection direction, char[] textBuffer, int startIndex, int count)
27 references to GetTextInRun
PresentationFramework (27)
src\Framework\MS\Internal\Documents\TextBoxLine.cs (1)
128position.GetTextInRun(LogicalDirection.Backward, text, 0, runLength);
src\Framework\System\Windows\Controls\PasswordTextContainer.cs (1)
254return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
src\Framework\System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
148return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
src\Framework\System\Windows\Documents\DocumentSequenceTextPointer.cs (3)
113/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/> 662/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/> 690return thisTp.ChildPointer.GetTextInRun(direction, textBuffer, startIndex, count);
src\Framework\System\Windows\Documents\FixedTextContainer.cs (1)
133return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
src\Framework\System\Windows\Documents\FixedTextPointer.cs (1)
133/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/>
src\Framework\System\Windows\Documents\ImmComposition.cs (2)
1570int copied = navigator.GetTextInRun(LogicalDirection.Backward, buffer, 0, buffer.Length); 1622int copied = navigator.GetTextInRun(LogicalDirection.Forward, buffer, 0, buffer.Length);
src\Framework\System\Windows\Documents\NullTextContainer.cs (1)
120return ((ITextPointer)position.Handle0).GetTextInRun(direction, textBuffer, startIndex, count);
src\Framework\System\Windows\Documents\NullTextNavigator.cs (1)
101/// <see cref="ITextPointer.GetTextInRun(LogicalDirection,char[],int,int)"/>
src\Framework\System\Windows\Documents\Speller.cs (1)
1824position.GetTextInRun(LogicalDirection.Forward, _text, _textLength, runCount);
src\Framework\System\windows\Documents\TextEditorSpelling.cs (1)
270position.GetTextInRun(direction, buffer, 0, 1);
src\Framework\System\Windows\Documents\TextFindEngine.cs (2)
687navigator.GetTextInRun(direction, findText, findTextLength, runCount); 697navigator.GetTextInRun(
src\Framework\System\Windows\Documents\TextPointerBase.cs (8)
69getTextLength = position.GetTextInRun(direction, text, 0, textLength); 85charsCopied = thisPointer.GetTextInRun(direction, textBuffer, startIndex, count); 114charsCopied = thisPointer.GetTextInRun(direction, textBuffer, startIndex, maxCount); 626int actualCount = thisPosition.GetTextInRun(direction, textBuffer, /*startIndex:*/0, /*count:*/2); 1372if (position.GetTextInRun(LogicalDirection.Backward, neighborhood, 0, 1) == 1 && 1373position.GetTextInRun(LogicalDirection.Forward, neighborhood, 1, 1) == 1) 1435navigator.GetTextInRun(LogicalDirection.Forward, preceedingText, SelectionWordBreaker.MinContextLength - preceedingCount, runLength); 1452navigator.GetTextInRun(LogicalDirection.Forward, followingText, followingCount, runLength);
src\Framework\System\windows\Documents\TextSelection.cs (2)
507caretPosition.GetTextInRun(direction, charBuffer, 0, 1) == 1 && 520caretPosition.GetTextInRun(oppositeDirection, charBuffer, 0, 1) != 1 ||
src\Framework\System\Windows\Documents\TextStore.cs (1)
1373navigator.GetTextInRun(LogicalDirection.Forward, nextChars, 0, nextChars.Length);