2 writes to _cchLength
PresentationCore (2)
MS\Internal\TextFormatting\FullTextLine.cs (1)
796line._metrics._cchLength = Length;
MS\Internal\TextFormatting\TextMetrics.cs (1)
151_lastRun = fullText.CountText(_lscpLim, firstCharIndex, out _cchLength);
15 references to _cchLength
PresentationCore (15)
MS\Internal\TextFormatting\FullTextLine.cs (12)
787if (line._metrics._cchLength < Length) 790_cpFirst + line._metrics._cchLength, 791Length - line._metrics._cchLength, 975TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 995if (characterHit.FirstCharacterIndex >= _cpFirst + _metrics._cchLength) 1135TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 1228TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 1502if(firstTextSourceCharacterIndex > _cpFirst + _metrics._cchLength - textLength) 1504textLength = (_cpFirst + _metrics._cchLength - firstTextSourceCharacterIndex); 2067int cchLeft = _metrics._cchLength; 2213return _cpFirst + _metrics._cchLength - characterHit.FirstCharacterIndex - characterHit.TrailingLength; 2701return _cpFirst + _metrics._cchLength;
MS\Internal\TextFormatting\TextMetrics.cs (3)
153Debug.Assert(_cchLength > 0); 176_cchDepend -= _cchLength; 330get { return _cchLength; }