2 overrides of LayoutBox
PresentationFramework (2)
src\Framework\MS\Internal\PtsHost\TextParaLineResult.cs (1)
227internal override Rect LayoutBox
src\Framework\MS\Internal\Text\TextLineResult.cs (1)
213internal override Rect LayoutBox { get { return _layoutBox; } }
10 references to LayoutBox
PresentationFramework (10)
src\Framework\MS\Internal\Documents\TextParagraphView.cs (8)
602approximatedLineHeight = lines[0].LayoutBox.Height; 606Rect lineBox = lines[lineIndex].LayoutBox; 629Rect nextLineBox = lines[lineIndex + 1].LayoutBox; 664siblingLineBox = lines[lineIndex - 1].LayoutBox; 682siblingLineBox = lines[lineIndex + 1].LayoutBox; 732Rect lineBox = lines[lineIndex].LayoutBox; 740siblingLineBox = lines[lineIndex - 1].LayoutBox; 769siblingLineBox = lines[lineIndex + 1].LayoutBox;
src\Framework\MS\Internal\LayoutDump.cs (1)
663DumpRect(writer, "LayoutBox", line.LayoutBox);
src\Framework\System\Windows\Controls\Primitives\BulletDecorator.cs (1)
377return lr[0].LayoutBox.Height + ancestorOffset.Y * 2d;