5 instantiations of TextMap
PresentationFramework (5)
System\Windows\Documents\Speller.cs (5)
193TextMap textMap = new(contextStart, contextEnd, contentStart, contentEnd); 710textMap = new TextMap(wordBreakLeft, wordBreakRight, caretPosition, caretPosition); 816textMap = new TextMap(contextStart, contextEnd, contentStart, contentEnd); 1137textMap = new TextMap(start, end, position, position); 1375textMap = new TextMap(start, end, start, end);
18 references to TextMap
PresentationFramework (18)
System\Windows\Documents\Speller.cs (10)
193TextMap textMap = new(contextStart, contextEnd, contentStart, contentEnd); 696TextMap textMap; 765TextMap textMap; 1039private void MarkErrorRange(TextMap textMap, SpellerInteropBase.ITextRange sTextRange) 1092TextMap textMap; 1235private int FindPositionInSegmentList(TextMap textMap, LogicalDirection direction, ArrayList segments, 1323TextMap textMap; 1903internal TextMapCallbackData(TextMap textmap, object data) 1909internal TextMap TextMap { get { return _textmap; } } 1913private readonly TextMap _textmap;
System\Windows\Documents\TextMapOffsetErrorLogger.cs (8)
23/// <see cref="TextMap.MapOffsetToPosition(int)"/> sometimes fails with an assertion 38/// within Speller because we need access to the internals of <see cref="Speller.TextMap"/> 58public TextMapOffsetErrorLogger(LogicalDirection direction, TextMap textMap, ArrayList segments, int positionInSegmentList, int leftWordBreak, int rightWordBreak, int contentOffset) 190/// Within <see cref="ExpandToWordBreakAndContext"/>, <see cref="TextMap.MapOffsetToPosition"/> 200/// <see cref="TextMap.Text"/> property of the 'textMap' instance 205/// <see cref="TextMap.TextLength"/> property of the 'textMap' instance 210/// <see cref="TextMap.ContentStartOffset"/> property of the 'textMap' instance 215/// <see cref="TextMap.ContentEndOffset"/> property of the 'textMap' instance.