2 writes to _cchLength
PresentationCore (2)
MS\Internal\TextFormatting\FullTextLine.cs (1)
794line._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)
785if (line._metrics._cchLength < Length) 788_cpFirst + line._metrics._cchLength, 789Length - line._metrics._cchLength, 973TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 993if (characterHit.FirstCharacterIndex >= _cpFirst + _metrics._cchLength) 1133TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 1226TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 1500if(firstTextSourceCharacterIndex > _cpFirst + _metrics._cchLength - textLength) 1502textLength = (_cpFirst + _metrics._cchLength - firstTextSourceCharacterIndex); 2065int cchLeft = _metrics._cchLength; 2211return _cpFirst + _metrics._cchLength - characterHit.FirstCharacterIndex - characterHit.TrailingLength; 2699return _cpFirst + _metrics._cchLength;
MS\Internal\TextFormatting\TextMetrics.cs (3)
153Debug.Assert(_cchLength > 0); 176_cchDepend -= _cchLength; 330get { return _cchLength; }