5 instantiations of TextMap
PresentationFramework (5)
System\Windows\Documents\Speller.cs (5)
189TextMap textMap = new(contextStart, contextEnd, contentStart, contentEnd); 703textMap = new TextMap(wordBreakLeft, wordBreakRight, caretPosition, caretPosition); 809textMap = new TextMap(contextStart, contextEnd, contentStart, contentEnd); 1130textMap = new TextMap(start, end, position, position); 1368textMap = new TextMap(start, end, start, end);
18 references to TextMap
PresentationFramework (18)
System\Windows\Documents\Speller.cs (10)
189TextMap textMap = new(contextStart, contextEnd, contentStart, contentEnd); 689TextMap textMap; 758TextMap textMap; 1032private void MarkErrorRange(TextMap textMap, SpellerInteropBase.ITextRange sTextRange) 1085TextMap textMap; 1228private int FindPositionInSegmentList(TextMap textMap, LogicalDirection direction, ArrayList segments, 1316TextMap textMap; 1896internal TextMapCallbackData(TextMap textmap, object data) 1902internal TextMap TextMap { get { return _textmap; } } 1906private readonly TextMap _textmap;
System\Windows\Documents\TextMapOffsetErrorLogger.cs (8)
22/// <see cref="TextMap.MapOffsetToPosition(int)"/> sometimes fails with an assertion 37/// within Speller because we need access to the internals of <see cref="Speller.TextMap"/> 57public TextMapOffsetErrorLogger(LogicalDirection direction, TextMap textMap, ArrayList segments, int positionInSegmentList, int leftWordBreak, int rightWordBreak, int contentOffset) 189/// Within <see cref="ExpandToWordBreakAndContext"/>, <see cref="TextMap.MapOffsetToPosition"/> 199/// <see cref="TextMap.Text"/> property of the 'textMap' instance 204/// <see cref="TextMap.TextLength"/> property of the 'textMap' instance 209/// <see cref="TextMap.ContentStartOffset"/> property of the 'textMap' instance 214/// <see cref="TextMap.ContentEndOffset"/> property of the 'textMap' instance.