8 writes to NewValue
System.Windows.Forms (8)
winforms\Managed\System\WinForms\DataGrid.cs (2)
3633
se.
NewValue
= HorizontalOffset;
3661
se.
NewValue
= Math.Min(se.NewValue, DataGridRowsLength - numTotallyVisibleRows);
winforms\Managed\System\WinForms\DataGridViewMethods.cs (5)
28438
se.
NewValue
= this.HorizontalOffset;
28498
se.
NewValue
= this.VerticalOffset;
28507
se.
NewValue
= this.VerticalOffset;
28515
se.
NewValue
= this.VerticalOffset;
28521
se.
NewValue
= this.VerticalOffset;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
3817
se.
NewValue
= ScrollBar.Value;
16 references to NewValue
System.Windows.Forms (16)
winforms\Managed\System\WinForms\DataGrid.cs (3)
3637
HorizontalOffset = se.
NewValue
;
3661
se.NewValue = Math.Min(se.
NewValue
, DataGridRowsLength - numTotallyVisibleRows);
3662
int dRows = se.
NewValue
- firstVisibleRow;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (7)
19394
if (se.
NewValue
!= newValue)
19401
newValue = se.
NewValue
;
19425
if (se.
NewValue
!= newValue)
19430
this.HorizontalOffset = se.
NewValue
;
28442
this.HorizontalOffset = se.
NewValue
;
28528
if (se.
NewValue
>= this.vertScrollBar.Maximum - this.vertScrollBar.LargeChange)
28535
this.VerticalOffset = se.
NewValue
;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (3)
3813
Debug.WriteLineIf(CompModSwitches.DebugGridView.TraceVerbose, "PropertyGridView:OnScroll(" + ScrollBar.Value.ToString(CultureInfo.InvariantCulture) + " -> " + se.
NewValue
.ToString(CultureInfo.InvariantCulture) +")");
3815
if (!Commit() || !IsScrollValueValid(se.
NewValue
)) {
3828
ScrollBar.Value = se.
NewValue
;
winforms\Managed\System\WinForms\ScrollBar.cs (1)
909
Value = se.
NewValue
;
winforms\Managed\System\WinForms\ToolStrip.cs (2)
3860
if (se.Type != ScrollEventType.ThumbTrack && se.
NewValue
!= se.OldValue) {
3861
ScrollInternal(se.OldValue - se.
NewValue
);