2 overrides of LayoutBox
PresentationFramework (2)
MS\Internal\PtsHost\TextParaLineResult.cs (1)
222internal override Rect LayoutBox
MS\Internal\Text\TextLineResult.cs (1)
208internal override Rect LayoutBox { get { return _layoutBox; } }
10 references to LayoutBox
PresentationFramework (10)
MS\Internal\Documents\TextParagraphView.cs (8)
577approximatedLineHeight = lines[0].LayoutBox.Height; 581Rect lineBox = lines[lineIndex].LayoutBox; 604Rect nextLineBox = lines[lineIndex + 1].LayoutBox; 639siblingLineBox = lines[lineIndex - 1].LayoutBox; 657siblingLineBox = lines[lineIndex + 1].LayoutBox; 707Rect lineBox = lines[lineIndex].LayoutBox; 715siblingLineBox = lines[lineIndex - 1].LayoutBox; 744siblingLineBox = lines[lineIndex + 1].LayoutBox;
MS\Internal\LayoutDump.cs (1)
660DumpRect(writer, "LayoutBox", line.LayoutBox);
System\Windows\Controls\Primitives\BulletDecorator.cs (1)
376return lr[0].LayoutBox.Height + ancestorOffset.Y * 2d;