5 implementations of GetTextRunLength
PresentationFramework (5)
src\Framework\System\Windows\Controls\PasswordTextNavigator.cs (1)
172int ITextPointer.GetTextRunLength(LogicalDirection direction)
src\Framework\System\Windows\Documents\DocumentSequenceTextPointer.cs (1)
101int ITextPointer.GetTextRunLength(LogicalDirection direction)
src\Framework\System\Windows\Documents\FixedTextPointer.cs (1)
116int ITextPointer.GetTextRunLength(LogicalDirection direction)
src\Framework\System\Windows\Documents\NullTextNavigator.cs (1)
86int ITextPointer.GetTextRunLength(LogicalDirection direction)
src\Framework\System\Windows\Documents\TextPointer.cs (1)
2413int ITextPointer.GetTextRunLength(LogicalDirection direction)
14 references to GetTextRunLength
PresentationFramework (14)
src\Framework\MS\Internal\Documents\TextBoxLine.cs (1)
126int runLength = Math.Min(128, position.GetTextRunLength(LogicalDirection.Backward));
src\Framework\System\Windows\Documents\DocumentSequenceTextPointer.cs (4)
98/// <see cref="ITextPointer.GetTextRunLength"/> 651/// <see cref="ITextPointer.GetTextRunLength"/> 658return thisTp.ChildPointer.GetTextRunLength(direction); 1078int runLength = childTn.GetTextRunLength(scanDir);
src\Framework\System\Windows\Documents\NullTextNavigator.cs (1)
83/// <see cref="ITextPointer.GetTextRunLength"/>
src\Framework\System\Windows\Documents\Speller.cs (1)
1820runCount = position.GetTextRunLength(LogicalDirection.Forward);
src\Framework\System\Windows\Documents\TextFindEngine.cs (1)
681runCount = navigator.GetTextRunLength(direction);
src\Framework\System\Windows\Documents\TextPointerBase.cs (3)
66textLength = position.GetTextRunLength(direction); 1431runLength = Math.Min(navigator.GetTextRunLength(LogicalDirection.Backward), SelectionWordBreaker.MinContextLength - preceedingCount); 1450runLength = Math.Min(navigator.GetTextRunLength(LogicalDirection.Forward), SelectionWordBreaker.MinContextLength - followingCount);
src\Framework\System\Windows\Documents\TextRangeBase.cs (1)
762int runLength = navigator.GetTextRunLength(LogicalDirection.Forward);
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (1)
315int textLength = textReader.GetTextRunLength(LogicalDirection.Forward);
src\Framework\System\Windows\Documents\TextStore.cs (1)
2334runCount = navigator.GetTextRunLength(LogicalDirection.Forward);