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