5 writes to Minimum
System.Windows.Forms (5)
winforms\Managed\System\WinForms\DataGrid.cs (1)
6820horizScrollBar.Minimum = 0;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (4)
10489this.horizScrollBar.Minimum = 0; 10509this.horizScrollBar.Minimum = 0; 10531this.vertScrollBar.Minimum = 0; 10553this.vertScrollBar.Minimum = 0;
10 references to Minimum
System.Windows.Forms (8)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (4)
17003while (this.vertScrollBar.Value != this.vertScrollBar.Minimum && absScrollBands > 0) 17008if (this.vertScrollBar.Value == this.vertScrollBar.Minimum) 17048extremeScrollBarValue = this.horizScrollBar.Minimum; 28503if (this.vertScrollBar.Value != this.vertScrollBar.Minimum)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
3405if (this.scrollBar.Value <= this.scrollBar.Minimum) { 4344if (newOffset >= ScrollBar.Minimum && newOffset < ScrollBar.Maximum) {
winforms\Managed\System\WinForms\ScrollBar.cs (1)
782return s + ", Minimum: " + Minimum.ToString(CultureInfo.CurrentCulture) + ", Maximum: " + Maximum.ToString(CultureInfo.CurrentCulture) + ", Value: " + Value.ToString(CultureInfo.CurrentCulture);
winforms\Managed\System\WinForms\ScrollEventType.cs (1)
97/// scroll box was moved to the <see cref='System.Windows.Forms.ScrollBar.Minimum'/>
System.Workflow.ComponentModel (2)
AuthoringOM\Design\WorkflowView.cs (2)
467value.X = Math.Max(value.X, hScrollBar.Minimum); 475value.Y = Math.Max(value.Y, vScrollBar.Minimum);