15 references to BPLeft
PresentationFramework (15)
MS\Internal\Documents\ParagraphResult.cs (3)
942return new Vector(LayoutBox.X + TextDpi.FromTextDpi(mbp.BPLeft), LayoutBox.Y + TextDpi.FromTextDpi(mbp.BPTop)); 1057return new Vector(LayoutBox.X + TextDpi.FromTextDpi(mbp.BPLeft), LayoutBox.Y + TextDpi.FromTextDpi(mbp.BPTop)); 1229return new Vector(LayoutBox.X + TextDpi.FromTextDpi(mbp.BPLeft), LayoutBox.Y + TextDpi.FromTextDpi(mbp.BPTop));
MS\Internal\PtsHost\FigureParaClient.cs (2)
73_contentRect.u = _rect.u + mbp.BPLeft; 74_contentRect.du = Math.Max(TextDpi.ToTextDpi(TextDpi.MinWidth), _rect.du - mbp.BPRight - mbp.BPLeft);
MS\Internal\PtsHost\FigureParagraph.cs (1)
149int subpageWidth = Math.Max(1, TextDpi.ToTextDpi(anchorLimitedWidth) - (mbp.BPLeft + mbp.BPRight));
MS\Internal\PtsHost\FloaterParaClient.cs (2)
196_contentRect.u = _rect.u + mbp.BPLeft; 197_contentRect.du = Math.Max(TextDpi.ToTextDpi(TextDpi.MinWidth), _rect.du - mbp.BPRight - mbp.BPLeft);
MS\Internal\PtsHost\FloaterParagraph.cs (1)
658subpageWidth = Math.Max(1, durSpecified - (mbp.BPLeft + mbp.BPRight));
MS\Internal\PtsHost\SubpageParaClient.cs (2)
90_contentRect.u = _rect.u + mbp.BPLeft; 91_contentRect.du = Math.Max(TextDpi.ToTextDpi(TextDpi.MinWidth), _rect.du - mbp.BPRight - mbp.BPLeft);
MS\Internal\PtsHost\TableParaClient.cs (3)
2319durTableWidth = TextDpi.FromTextDpi(mbpInfo.BPLeft); 2417return new PTS.FSRECT(_rect.u + mbpInfo.BPLeft, 2419Math.Max(_rect.du - (mbpInfo.BPRight + mbpInfo.BPLeft), 1),
MS\Internal\PtsHost\UIElementParaClient.cs (1)
124uiElementIsland.Offset = new PTS.FSVECTOR(_rect.u + mbp.BPLeft, _rect.v + mbp.BPTop).FromTextDpi();