25 writes to Value
System.Windows.Forms (21)
winforms\Managed\System\WinForms\DataGrid.cs (8)
1404vertScrollBar.Value = 0; 2258horizScrollBar.Value = value; 4867this.horizScrollBar.Value = HorizontalOffset; 5008this.horizScrollBar.Value = HorizontalOffset; 6955vertScrollBar.Value = firstVisibleRow; 6957horizScrollBar.Value = HorizontalOffset + negOffset; 8610vertScrollBar.Value = newFirstRow; 8823horizScrollBar.Value = 0;
winforms\Managed\System\WinForms\DataGridView.cs (2)
3403this.horizScrollBar.Value = value; 5215this.vertScrollBar.Value = value;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (7)
4512this.vertScrollBar.Value = ComputeHeightOfScrolledOffRows(); 10513this.horizScrollBar.Value = 0; 10534this.vertScrollBar.Value = ComputeHeightOfScrolledOffRows(); 10556this.vertScrollBar.Value = 0; 14821this.horizScrollBar.Value = this.horizontalOffset; 17647this.horizScrollBar.Value = this.horizontalOffset; 26430this.vertScrollBar.Value = this.verticalOffset;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
3828ScrollBar.Value = se.NewValue; 4668ScrollBar.Value = posNew;
winforms\Managed\System\WinForms\ScrollBar.cs (2)
360Value = value; 909Value = se.NewValue;
System.Workflow.ComponentModel (4)
AuthoringOM\Design\WorkflowView.cs (4)
468hScrollBar.Value = value.X; 476vScrollBar.Value = value.Y; 1819hScrollBar.Value = xMaxScrollPos; 1824vScrollBar.Value = yMaxScrollPos;
36 references to Value
System.Windows.Forms (27)
winforms\Managed\System\WinForms\DataGrid.cs (1)
4390int newValue = horizScrollBar.Value + (move < 0 ? 1 : -1) * horizScrollBar.LargeChange;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (13)
4507int oldVertScrollBarValue = this.vertScrollBar.Value; 4514this.verticalOffset = this.vertScrollBar.Value; 4523Debug.Assert(this.verticalOffset == this.vertScrollBar.Value); 10545this.verticalOffset = this.vertScrollBar.Value; 17003while (this.vertScrollBar.Value != this.vertScrollBar.Minimum && absScrollBands > 0) 17008if (this.vertScrollBar.Value == this.vertScrollBar.Minimum) 17023this.vertScrollBar.Value + this.Rows.SharedRow(this.displayedBandsInfo.FirstDisplayedScrollingRow).GetHeight(this.displayedBandsInfo.FirstDisplayedScrollingRow) <= 17032if (this.vertScrollBar.Value + this.Rows.SharedRow(this.displayedBandsInfo.FirstDisplayedScrollingRow).GetHeight(this.displayedBandsInfo.FirstDisplayedScrollingRow) > 17057while (this.horizScrollBar.Value != extremeScrollBarValue && absScrollBands > 0) 17062if (this.horizScrollBar.Value == extremeScrollBarValue) 17627if (newHorizontalOffset >= 0 && newHorizontalOffset < this.horizScrollBar.Value) 28493if (this.vertScrollBar.Value + this.Rows.SharedRow(this.displayedBandsInfo.FirstDisplayedScrollingRow).GetHeight(this.displayedBandsInfo.FirstDisplayedScrollingRow) <= 28503if (this.vertScrollBar.Value != this.vertScrollBar.Minimum)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (8)
2039int pos = ScrollBar.Value; 2321if (newValue == ScrollBar.Value || 3405if (this.scrollBar.Value <= this.scrollBar.Minimum) { 3414if (this.scrollBar.Value > (scrollBar.Maximum-visibleRows+1)) { 3813Debug.WriteLineIf(CompModSwitches.DebugGridView.TraceVerbose, "PropertyGridView:OnScroll(" + ScrollBar.Value.ToString(CultureInfo.InvariantCulture) + " -> " + se.NewValue.ToString(CultureInfo.InvariantCulture) +")"); 3817se.NewValue = ScrollBar.Value; 3832SelectGridEntry(oldGridEntry, (ScrollBar.Value == totalProps ? true : false)); 4666int posOld = ScrollBar.Value;
winforms\Managed\System\WinForms\ScrollBar.cs (4)
306/// Gets or sets a value to be added or subtracted to the <see cref='System.Windows.Forms.ScrollBar.Value'/> 400/// <see cref='System.Windows.Forms.ScrollBar.Value'/> 644/// Occurs when the <see cref='System.Windows.Forms.ScrollBar.Value'/> property has changed, either by a 782return s + ", Minimum: " + Minimum.ToString(CultureInfo.CurrentCulture) + ", Maximum: " + Maximum.ToString(CultureInfo.CurrentCulture) + ", Value: " + Value.ToString(CultureInfo.CurrentCulture);
winforms\Managed\System\WinForms\ScrollProperties.cs (1)
214/// <see cref='System.Windows.Forms.ScrollBar.Value'/>
System.Workflow.ComponentModel (9)
AuthoringOM\Design\MessageFilters\AutoScrollExpandMessageFilter.cs (4)
119if (clientPoint.X <= clientRectangle.Width / 10 && hScrollBar.Value > 0) 121else if (clientPoint.X >= clientRectangle.Right - clientRectangle.Width / 10 && hScrollBar.Value < hScrollBar.Maximum - hScrollBar.LargeChange) 125if (clientPoint.Y <= clientRectangle.Height / 10 && vScrollBar.Value > 0) 127else if (clientPoint.Y >= clientRectangle.Bottom - clientRectangle.Height / 10 && vScrollBar.Value < vScrollBar.Maximum - vScrollBar.LargeChange)
AuthoringOM\Design\WorkflowView.cs (5)
458return new Point(HScrollBar.Value, VScrollBar.Value); 1780((IWorkflowDesignerMessageSink)filter).OnScroll(scrollBar, scrollBar.Value); 1818if (hScrollBar.Value > xMaxScrollPos) 1823if (vScrollBar.Value > yMaxScrollPos)