2 writes to _cchLength
PresentationCore (2)
MS\Internal\TextFormatting\FullTextLine.cs (1)
795line._metrics._cchLength = Length;
MS\Internal\TextFormatting\TextMetrics.cs (1)
150_lastRun = fullText.CountText(_lscpLim, firstCharIndex, out _cchLength);
15 references to _cchLength
PresentationCore (15)
MS\Internal\TextFormatting\FullTextLine.cs (12)
786if (line._metrics._cchLength < Length) 789_cpFirst + line._metrics._cchLength, 790Length - line._metrics._cchLength, 974TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 994if (characterHit.FirstCharacterIndex >= _cpFirst + _metrics._cchLength) 1134TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 1227TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 1501if(firstTextSourceCharacterIndex > _cpFirst + _metrics._cchLength - textLength) 1503textLength = (_cpFirst + _metrics._cchLength - firstTextSourceCharacterIndex); 2066int cchLeft = _metrics._cchLength; 2212return _cpFirst + _metrics._cchLength - characterHit.FirstCharacterIndex - characterHit.TrailingLength; 2700return _cpFirst + _metrics._cchLength;
MS\Internal\TextFormatting\TextMetrics.cs (3)
152Debug.Assert(_cchLength > 0); 175_cchDepend -= _cchLength; 329get { return _cchLength; }