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();
1792
if (
_scrollBar
is null)
1978
private bool GetScrollbarHidden() =>
_scrollBar
is null || !ScrollBar.Visible;
1999
if (
_scrollBar
is not null)
3222
Debug.Assert(
_scrollBar
is not null);
3224
int large = fullNotches *
_scrollBar
.LargeChange;
3228
initialOffset -= fullNotches *
_scrollBar
.LargeChange;
3229
if (Math.Abs(initialOffset - originalOffset) >= Math.Abs(fullNotches *
_scrollBar
.LargeChange))
3263
if (
_scrollBar
!.Value <=
_scrollBar
.Minimum)
3274
if (
_scrollBar
!.Value > (
_scrollBar
.Maximum - _visibleRows + 1))
4805
_scrollBar
?.ReleaseUiaProvider(HWND.Null);