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