5 writes to Bottom
System.Drawing (1)
commonui\System\Drawing\Printing\Margins.cs (1)
196this.Bottom = (int)Math.Round(value);
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Printing\PageSetupDialog.cs (1)
338newMargins.Bottom = data.marginBottom;
System.Workflow.ComponentModel (3)
AuthoringOM\Design\WorkflowLayouts.cs (3)
773PageMargins.Bottom = Convert.ToInt32((float)PageMargins.Bottom / this.scaling); 777this.headerFooterMargins.Bottom = Convert.ToInt32((float)this.printDocument.PageSetupData.FooterMargin / this.scaling); 851margins.Bottom = margins.Top;
28 references to Bottom
System.Drawing (9)
commonui\System\Drawing\Printing\Margins.cs (6)
250&& margins.Bottom == this.Bottom; 265uint bottom = (uint) this.Bottom; 285return m1.Left == m2.Left && m1.Top == m2.Top && m1.Right == m2.Right && m1.Bottom == m2.Bottom; 313+ " Bottom=" + Bottom.ToString(CultureInfo.InvariantCulture)
commonui\System\Drawing\Printing\MarginsConverter.cs (2)
128args[nArg++] = intConverter.ConvertToString(context, culture, margins.Bottom); 140margins.Left, margins.Right, margins.Top, margins.Bottom});
commonui\System\Drawing\Printing\PrintController.cs (1)
267pageBounds.Height - (pageSettings.Margins.Top + pageSettings.Margins.Bottom));
System.Windows.Forms (3)
winforms\Managed\System\WinForms\Printing\PageSetupDialog.cs (3)
314|| minMargins.Bottom != 0; 386data.minMarginBottom = margins.Bottom; 394data.marginBottom = margins.Bottom;
System.Workflow.ComponentModel (16)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (2)
1077int verticalMarginsSum = margins.Top + margins.Bottom; 1217this.marginsBottomInput.Value = PrinterUnitToUIUnit(margins.Bottom);
AuthoringOM\Design\WorkflowLayouts.cs (7)
383Size printableAreaPerPage = new Size(this.pageSize.Width - (PageMargins.Left + PageMargins.Right), this.pageSize.Height - (PageMargins.Top + PageMargins.Bottom)); 740Size printableArea = new Size(paperSize.Width - (margins.Left + margins.Right), paperSize.Height - (margins.Top + margins.Bottom)); 773PageMargins.Bottom = Convert.ToInt32((float)PageMargins.Bottom / this.scaling); 781Size viewablePageSize = new Size(this.pageSize.Width - (PageMargins.Left + PageMargins.Right), this.pageSize.Height - (PageMargins.Top + PageMargins.Bottom)); 850temp = margins.Bottom; 863Math.Max(margins.Bottom, hardMargins.Bottom));
AuthoringOM\Design\WorkflowPrinting.cs (7)
125Math.Max(printPageArg.PageSettings.Margins.Bottom, hardMargins.Bottom)); 126Size printableArea = new Size(printPageArg.PageBounds.Size.Width - (margins.Left + margins.Right), printPageArg.PageBounds.Size.Height - (margins.Top + margins.Bottom)); 298layoutRectangle.Y = headerFooterPrintData.PageBounds.Bottom - headerFooterPrintData.HeaderFooterMargins.Bottom - layoutRectangle.Size.Height; 325Math.Max(printPageArg.PageSettings.Margins.Bottom, hardMargins.Bottom)); 326Size printableArea = new Size(paperSize.Width - (margins.Left + margins.Right), paperSize.Height - (margins.Top + margins.Bottom));