13 references to Height
System.Drawing (5)
commonui\System\Drawing\Printing\PageSettings.cs (4)
360int length = PrinterUnitConvert.Convert(paperSize.Height, PrinterUnit.Display, PrinterUnit.TenthsOfAMillimeter); 376int length = PrinterUnitConvert.Convert(paperSize.Height, PrinterUnit.Display, PrinterUnit.TenthsOfAMillimeter); 449pageBounds = new Rectangle(0, 0, size.Height, size.Width); 451pageBounds = 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)
1071physicalPageSize = new Size(paperSize.Width, paperSize.Height); 1120this.footerMarginInput.Maximum = this.headerMarginInput.Maximum = PrinterUnitToUIUnit(this.landscapeRadioButton.Checked ? paperSize.Width : paperSize.Height); 1156this.printDocument.DefaultPageSettings.PaperSize.Height == paperSize.Height) 1174this.printDocument.DefaultPageSettings.PaperSize.Height == paperSize.Height)
AuthoringOM\Design\WorkflowLayouts.cs (2)
829size.Width = Math.Max(paperSize.Height, 1); 835size.Height = Math.Max(paperSize.Height, 1);