5 instantiations of TextMap
PresentationFramework (5)
System\Windows\Documents\Speller.cs (5)
192TextMap textMap = new(contextStart, contextEnd, contentStart, contentEnd); 706textMap = new TextMap(wordBreakLeft, wordBreakRight, caretPosition, caretPosition); 812textMap = new TextMap(contextStart, contextEnd, contentStart, contentEnd); 1133textMap = new TextMap(start, end, position, position); 1371textMap = new TextMap(start, end, start, end);
18 references to TextMap
PresentationFramework (18)
System\Windows\Documents\Speller.cs (10)
192TextMap textMap = new(contextStart, contextEnd, contentStart, contentEnd); 692TextMap textMap; 761TextMap textMap; 1035private void MarkErrorRange(TextMap textMap, SpellerInteropBase.ITextRange sTextRange) 1088TextMap textMap; 1231private int FindPositionInSegmentList(TextMap textMap, LogicalDirection direction, ArrayList segments, 1319TextMap textMap; 1899internal TextMapCallbackData(TextMap textmap, object data) 1905internal TextMap TextMap { get { return _textmap; } } 1909private 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.