13 references to Length
PresentationCore (13)
MS\Internal\TextFormatting\FullTextLine.cs (4)
505
lastRunLength = lsrun.
Length
;
905
int codepointsToNextCaretStop = lsrun.IsHitTestable ? 1 : lsrun.
Length
;
1371
offsetToNextCaretStopIndex = Math.Min(Length, lsrun.
Length
- caretStopIndex + lsrun.OffsetToFirstCp + _cpFirst);
2735
return lsrun.
Length
;
MS\Internal\TextFormatting\FullTextState.cs (2)
307
int cpRun = lastRun.
Length
;
382
lastRunLength = (plsrun >= Plsrun.FormatAnchor ? lsrun.
Length
: 0);
MS\Internal\TextFormatting\LineServicesCallbacks.cs (1)
197
store.CchEol = lsrun.
Length
;
MS\Internal\TextFormatting\TextStore.cs (6)
1071
if (cp + lsrun.
Length
>= cpLimit)
1077
if (lsrun.Type == Plsrun.Text && cp + lsrun.
Length
> cpLimit)
1080
span.length = lsrun.
Length
;
1083
_lscchUpTo = lscp + lsrun.
Length
;
1095
cp += lsrun.
Length
;
2217
int ichFirst = lsrun.OffsetToFirstChar + lsrun.
Length
- lsrunLength;