7 writes to Maximum
System.Windows.Forms (2)
winforms\Managed\System\WinForms\NumericUpDown.cs (1)
648Maximum = DefaultMaximum;
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (1)
1493pageCounter.Maximum = new Decimal(1000d);
System.Workflow.ComponentModel (5)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (5)
547this.fitToPagesTallInput.Maximum = new decimal(new int[] { 568this.fitToPagesWideInput.Maximum = new decimal(new int[] { 589this.adjustToScaleInput.Maximum = new decimal(new int[] { 1120this.footerMarginInput.Maximum = this.headerMarginInput.Maximum = PrinterUnitToUIUnit(this.landscapeRadioButton.Checked ? paperSize.Width : paperSize.Height);
4 references to Maximum
System.Windows.Forms (4)
winforms\Managed\System\WinForms\NumericUpDown.cs (4)
668/// <para>Indicates whether the <see cref='System.Windows.Forms.NumericUpDown.Maximum'/> property should be persisted.</para> 671return !Maximum.Equals(NumericUpDown.DefaultMaximum); 712s += ", Minimum = " + Minimum.ToString(CultureInfo.CurrentCulture) + ", Maximum = " + Maximum.ToString(CultureInfo.CurrentCulture); 823int numDigits = (int)Math.Floor(Math.Log(Math.Max(-(double)Minimum, (double)Maximum), baseSize));