2 writes to Minimum
System.Windows.Forms (2)
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (1)
590Minimum = DefaultMinimum;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
901_pageCounter.Minimum = new decimal(0d);
5 references to Minimum
System.Windows.Forms (5)
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (5)
316throw new ArgumentOutOfRangeException(nameof(value), value, string.Format(SR.InvalidBoundArgument, nameof(Value), value, $"'{nameof(Minimum)}'", $"'{nameof(Maximum)}'")); 616/// Indicates whether the <see cref="Minimum"/> property should be persisted. 620return !Minimum.Equals(DefaultMinimum); 656return $"{s}, Minimum = {Minimum}, Maximum = {Maximum}"; 770int numDigits = (int)Math.Floor(Math.Log(Math.Max(-(double)Minimum, (double)Maximum), baseSize));