2 writes to _cchLength
PresentationCore (2)
Core\CSharp\MS\Internal\TextFormatting\FullTextLine.cs (1)
842
line._metrics.
_cchLength
= Length;
Core\CSharp\MS\Internal\TextFormatting\TextMetrics.cs (1)
172
_lastRun = fullText.CountText(_lscpLim, firstCharIndex, out
_cchLength
);
15 references to _cchLength
PresentationCore (15)
Core\CSharp\MS\Internal\TextFormatting\FullTextLine.cs (12)
833
if (line._metrics.
_cchLength
< Length)
836
_cpFirst + line._metrics.
_cchLength
,
837
Length - line._metrics.
_cchLength
,
1021
TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics.
_cchLength
);
1041
if (characterHit.FirstCharacterIndex >= _cpFirst + _metrics.
_cchLength
)
1181
TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics.
_cchLength
);
1274
TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics.
_cchLength
);
1551
if(firstTextSourceCharacterIndex > _cpFirst + _metrics.
_cchLength
- textLength)
1553
textLength = (_cpFirst + _metrics.
_cchLength
- firstTextSourceCharacterIndex);
2116
int cchLeft = _metrics.
_cchLength
;
2274
return _cpFirst + _metrics.
_cchLength
- characterHit.FirstCharacterIndex - characterHit.TrailingLength;
2775
return _cpFirst + _metrics.
_cchLength
;
Core\CSharp\MS\Internal\TextFormatting\TextMetrics.cs (3)
174
Debug.Assert(
_cchLength
> 0);
197
_cchDepend -=
_cchLength
;
355
get { return
_cchLength
; }