2 writes to _cchLength
PresentationCore (2)
MS\Internal\TextFormatting\FullTextLine.cs (1)
795
line._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)
786
if (line._metrics.
_cchLength
< Length)
789
_cpFirst + line._metrics.
_cchLength
,
790
Length - line._metrics.
_cchLength
,
974
TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics.
_cchLength
);
994
if (characterHit.FirstCharacterIndex >= _cpFirst + _metrics.
_cchLength
)
1134
TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics.
_cchLength
);
1227
TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics.
_cchLength
);
1501
if(firstTextSourceCharacterIndex > _cpFirst + _metrics.
_cchLength
- textLength)
1503
textLength = (_cpFirst + _metrics.
_cchLength
- firstTextSourceCharacterIndex);
2066
int cchLeft = _metrics.
_cchLength
;
2212
return _cpFirst + _metrics.
_cchLength
- characterHit.FirstCharacterIndex - characterHit.TrailingLength;
2700
return _cpFirst + _metrics.
_cchLength
;
MS\Internal\TextFormatting\TextMetrics.cs (3)
152
Debug.Assert(
_cchLength
> 0);
175
_cchDepend -=
_cchLength
;
329
get { return
_cchLength
; }