5 writes to value
System.Windows.Forms (5)
winforms\Managed\System\WinForms\ScrollableControl.cs (3)
1035scrollProperties.value = 0; 1246HorizontalScroll.value = -displayRect.X; 1261VerticalScroll.value = -displayRect.Y;
winforms\Managed\System\WinForms\ScrollProperties.cs (2)
186this.value = value; 270this.value = value;
7 references to value
System.Windows.Forms (7)
winforms\Managed\System\WinForms\HScrollProperties.cs (1)
47return -this.value;
winforms\Managed\System\WinForms\ScrollProperties.cs (5)
148if (value < this.value) 185if (value > this.value) 263return value; 266if (this.value != value) { 319si.nPos = value;
winforms\Managed\System\WinForms\VScrollProperties.cs (1)
50return -this.value;