2 writes to _cchLength
PresentationCore (2)
MS\Internal\TextFormatting\FullTextLine.cs (1)
809line._metrics._cchLength = Length;
MS\Internal\TextFormatting\TextMetrics.cs (1)
166_lastRun = fullText.CountText(_lscpLim, firstCharIndex, out _cchLength);
15 references to _cchLength
PresentationCore (15)
MS\Internal\TextFormatting\FullTextLine.cs (12)
800if (line._metrics._cchLength < Length) 803_cpFirst + line._metrics._cchLength, 804Length - line._metrics._cchLength, 988TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 1008if (characterHit.FirstCharacterIndex >= _cpFirst + _metrics._cchLength) 1148TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 1241TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 1515if(firstTextSourceCharacterIndex > _cpFirst + _metrics._cchLength - textLength) 1517textLength = (_cpFirst + _metrics._cchLength - firstTextSourceCharacterIndex); 2080int cchLeft = _metrics._cchLength; 2226return _cpFirst + _metrics._cchLength - characterHit.FirstCharacterIndex - characterHit.TrailingLength; 2714return _cpFirst + _metrics._cchLength;
MS\Internal\TextFormatting\TextMetrics.cs (3)
168Debug.Assert(_cchLength > 0); 191_cchDepend -= _cchLength; 345get { return _cchLength; }