15 references to BPLeft
PresentationFramework (15)
MS\Internal\Documents\ParagraphResult.cs (3)
946return new Vector(LayoutBox.X + TextDpi.FromTextDpi(mbp.BPLeft), LayoutBox.Y + TextDpi.FromTextDpi(mbp.BPTop)); 1061return new Vector(LayoutBox.X + TextDpi.FromTextDpi(mbp.BPLeft), LayoutBox.Y + TextDpi.FromTextDpi(mbp.BPTop)); 1233return new Vector(LayoutBox.X + TextDpi.FromTextDpi(mbp.BPLeft), LayoutBox.Y + TextDpi.FromTextDpi(mbp.BPTop));
MS\Internal\PtsHost\FigureParaClient.cs (2)
83_contentRect.u = _rect.u + mbp.BPLeft; 84_contentRect.du = Math.Max(TextDpi.ToTextDpi(TextDpi.MinWidth), _rect.du - mbp.BPRight - mbp.BPLeft);
MS\Internal\PtsHost\FigureParagraph.cs (1)
161int subpageWidth = Math.Max(1, TextDpi.ToTextDpi(anchorLimitedWidth) - (mbp.BPLeft + mbp.BPRight));
MS\Internal\PtsHost\FloaterParaClient.cs (2)
204_contentRect.u = _rect.u + mbp.BPLeft; 205_contentRect.du = Math.Max(TextDpi.ToTextDpi(TextDpi.MinWidth), _rect.du - mbp.BPRight - mbp.BPLeft);
MS\Internal\PtsHost\FloaterParagraph.cs (1)
668subpageWidth = Math.Max(1, durSpecified - (mbp.BPLeft + mbp.BPRight));
MS\Internal\PtsHost\SubpageParaClient.cs (2)
96_contentRect.u = _rect.u + mbp.BPLeft; 97_contentRect.du = Math.Max(TextDpi.ToTextDpi(TextDpi.MinWidth), _rect.du - mbp.BPRight - mbp.BPLeft);
MS\Internal\PtsHost\TableParaClient.cs (3)
2326durTableWidth = TextDpi.FromTextDpi(mbpInfo.BPLeft); 2424return new PTS.FSRECT(_rect.u + mbpInfo.BPLeft, 2426Math.Max(_rect.du - (mbpInfo.BPRight + mbpInfo.BPLeft), 1),
MS\Internal\PtsHost\UIElementParaClient.cs (1)
129uiElementIsland.Offset = new PTS.FSVECTOR(_rect.u + mbp.BPLeft, _rect.v + mbp.BPTop).FromTextDpi();