2 writes to _cchLength
PresentationCore (2)
MS\Internal\TextFormatting\FullTextLine.cs (1)
796
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)
787
if (line._metrics.
_cchLength
< Length)
790
_cpFirst + line._metrics.
_cchLength
,
791
Length - line._metrics.
_cchLength
,
975
TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics.
_cchLength
);
995
if (characterHit.FirstCharacterIndex >= _cpFirst + _metrics.
_cchLength
)
1135
TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics.
_cchLength
);
1228
TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics.
_cchLength
);
1502
if(firstTextSourceCharacterIndex > _cpFirst + _metrics.
_cchLength
- textLength)
1504
textLength = (_cpFirst + _metrics.
_cchLength
- firstTextSourceCharacterIndex);
2067
int cchLeft = _metrics.
_cchLength
;
2213
return _cpFirst + _metrics.
_cchLength
- characterHit.FirstCharacterIndex - characterHit.TrailingLength;
2701
return _cpFirst + _metrics.
_cchLength
;
MS\Internal\TextFormatting\TextMetrics.cs (3)
153
Debug.Assert(
_cchLength
> 0);
176
_cchDepend -=
_cchLength
;
330
get { return
_cchLength
; }