13 references to Height
System.Drawing (5)
commonui\System\Drawing\Printing\PageSettings.cs (4)
360
int length = PrinterUnitConvert.Convert(paperSize.
Height
, PrinterUnit.Display, PrinterUnit.TenthsOfAMillimeter);
376
int length = PrinterUnitConvert.Convert(paperSize.
Height
, PrinterUnit.Display, PrinterUnit.TenthsOfAMillimeter);
449
pageBounds = new Rectangle(0, 0, size.
Height
, size.Width);
451
pageBounds = new Rectangle(0, 0, size.Width, size.
Height
);
commonui\System\Drawing\Printing\PaperSize.cs (1)
309
+ " Height=" +
Height
.ToString(CultureInfo.InvariantCulture)
System.Workflow.ComponentModel (8)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (6)
1071
physicalPageSize = new Size(paperSize.Width, paperSize.
Height
);
1120
this.footerMarginInput.Maximum = this.headerMarginInput.Maximum = PrinterUnitToUIUnit(this.landscapeRadioButton.Checked ? paperSize.Width : paperSize.
Height
);
1156
this.printDocument.DefaultPageSettings.PaperSize.
Height
== paperSize.
Height
)
1174
this.printDocument.DefaultPageSettings.PaperSize.
Height
== paperSize.
Height
)
AuthoringOM\Design\WorkflowLayouts.cs (2)
829
size.Width = Math.Max(paperSize.
Height
, 1);
835
size.Height = Math.Max(paperSize.
Height
, 1);