13 references to Width
System.Drawing (5)
commonui\System\Drawing\Printing\PageSettings.cs (4)
366int width = PrinterUnitConvert.Convert(paperSize.Width, PrinterUnit.Display, PrinterUnit.TenthsOfAMillimeter); 382int width = PrinterUnitConvert.Convert(paperSize.Width, 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)
310+ " Width=" + Width.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); 1155this.printDocument.DefaultPageSettings.PaperSize.Width == paperSize.Width && 1173this.printDocument.DefaultPageSettings.PaperSize.Width == paperSize.Width &&
AuthoringOM\Design\WorkflowLayouts.cs (2)
830size.Height = Math.Max(paperSize.Width, 1); 834size.Width = Math.Max(paperSize.Width, 1);