13 references to Length
PresentationCore (13)
MS\Internal\TextFormatting\FullTextLine.cs (4)
504
lastRunLength = lsrun.
Length
;
904
int codepointsToNextCaretStop = lsrun.IsHitTestable ? 1 : lsrun.
Length
;
1370
offsetToNextCaretStopIndex = Math.Min(Length, lsrun.
Length
- caretStopIndex + lsrun.OffsetToFirstCp + _cpFirst);
2734
return lsrun.
Length
;
MS\Internal\TextFormatting\FullTextState.cs (2)
306
int cpRun = lastRun.
Length
;
381
lastRunLength = (plsrun >= Plsrun.FormatAnchor ? lsrun.
Length
: 0);
MS\Internal\TextFormatting\LineServicesCallbacks.cs (1)
196
store.CchEol = lsrun.
Length
;
MS\Internal\TextFormatting\TextStore.cs (6)
1070
if (cp + lsrun.
Length
>= cpLimit)
1076
if (lsrun.Type == Plsrun.Text && cp + lsrun.
Length
> cpLimit)
1079
span.length = lsrun.
Length
;
1082
_lscchUpTo = lscp + lsrun.
Length
;
1094
cp += lsrun.
Length
;
2216
int ichFirst = lsrun.OffsetToFirstChar + lsrun.
Length
- lsrunLength;