2 writes to _scrollBar
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (2)
492
_scrollBar
= new VScrollBar();
988
_scrollBar
= null;
17 references to _scrollBar
System.Windows.Forms (17)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (17)
488
if (
_scrollBar
is null)
493
_scrollBar
.Scroll += OnScroll;
494
Controls.Add(
_scrollBar
);
497
return
_scrollBar
;
984
_scrollBar
?.Dispose();
1786
if (
_scrollBar
is null)
1972
private bool GetScrollbarHidden() =>
_scrollBar
is null || !ScrollBar.Visible;
1993
if (
_scrollBar
is not null)
3210
Debug.Assert(
_scrollBar
is not null);
3212
int large = fullNotches *
_scrollBar
.LargeChange;
3216
initialOffset -= fullNotches *
_scrollBar
.LargeChange;
3217
if (Math.Abs(initialOffset - originalOffset) >= Math.Abs(fullNotches *
_scrollBar
.LargeChange))
3251
if (
_scrollBar
!.Value <=
_scrollBar
.Minimum)
3262
if (
_scrollBar
!.Value > (
_scrollBar
.Maximum - _visibleRows + 1))
4793
_scrollBar
?.ReleaseUiaProvider(HWND.Null);