13 references to Length
PresentationCore (13)
Core\CSharp\MS\Internal\TextFormatting\FullTextLine.cs (4)
541lastRunLength = lsrun.Length; 951int codepointsToNextCaretStop = lsrun.IsHitTestable ? 1 : lsrun.Length; 1417offsetToNextCaretStopIndex = Math.Min(Length, lsrun.Length - caretStopIndex + lsrun.OffsetToFirstCp + _cpFirst); 2810return lsrun.Length;
Core\CSharp\MS\Internal\TextFormatting\FullTextState.cs (2)
331int cpRun = lastRun.Length; 406lastRunLength = (plsrun >= Plsrun.FormatAnchor ? lsrun.Length : 0);
Core\CSharp\MS\Internal\TextFormatting\LineServicesCallbacks.cs (1)
246store.CchEol = lsrun.Length;
Core\CSharp\MS\Internal\TextFormatting\TextStore.cs (6)
1097if (cp + lsrun.Length >= cpLimit) 1103if (lsrun.Type == Plsrun.Text && cp + lsrun.Length > cpLimit) 1106span.length = lsrun.Length; 1109_lscchUpTo = lscp + lsrun.Length; 1121cp += lsrun.Length; 2241int ichFirst = lsrun.OffsetToFirstChar + lsrun.Length - lsrunLength;