15 references to BPLeft
PresentationFramework (15)
MS\Internal\Documents\ParagraphResult.cs (3)
943return new Vector(LayoutBox.X + TextDpi.FromTextDpi(mbp.BPLeft), LayoutBox.Y + TextDpi.FromTextDpi(mbp.BPTop)); 1058return new Vector(LayoutBox.X + TextDpi.FromTextDpi(mbp.BPLeft), LayoutBox.Y + TextDpi.FromTextDpi(mbp.BPTop)); 1230return new Vector(LayoutBox.X + TextDpi.FromTextDpi(mbp.BPLeft), LayoutBox.Y + TextDpi.FromTextDpi(mbp.BPTop));
MS\Internal\PtsHost\FigureParaClient.cs (2)
77_contentRect.u = _rect.u + mbp.BPLeft; 78_contentRect.du = Math.Max(TextDpi.ToTextDpi(TextDpi.MinWidth), _rect.du - mbp.BPRight - mbp.BPLeft);
MS\Internal\PtsHost\FigureParagraph.cs (1)
150int subpageWidth = Math.Max(1, TextDpi.ToTextDpi(anchorLimitedWidth) - (mbp.BPLeft + mbp.BPRight));
MS\Internal\PtsHost\FloaterParaClient.cs (2)
200_contentRect.u = _rect.u + mbp.BPLeft; 201_contentRect.du = Math.Max(TextDpi.ToTextDpi(TextDpi.MinWidth), _rect.du - mbp.BPRight - mbp.BPLeft);
MS\Internal\PtsHost\FloaterParagraph.cs (1)
665subpageWidth = Math.Max(1, durSpecified - (mbp.BPLeft + mbp.BPRight));
MS\Internal\PtsHost\SubpageParaClient.cs (2)
91_contentRect.u = _rect.u + mbp.BPLeft; 92_contentRect.du = Math.Max(TextDpi.ToTextDpi(TextDpi.MinWidth), _rect.du - mbp.BPRight - mbp.BPLeft);
MS\Internal\PtsHost\TableParaClient.cs (3)
2320durTableWidth = TextDpi.FromTextDpi(mbpInfo.BPLeft); 2418return new PTS.FSRECT(_rect.u + mbpInfo.BPLeft, 2420Math.Max(_rect.du - (mbpInfo.BPRight + mbpInfo.BPLeft), 1),
MS\Internal\PtsHost\UIElementParaClient.cs (1)
125uiElementIsland.Offset = new PTS.FSVECTOR(_rect.u + mbp.BPLeft, _rect.v + mbp.BPTop).FromTextDpi();