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