2 writes to _scrollBar
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (2)
493
_scrollBar
= new VScrollBar();
989
_scrollBar
= null;
17 references to _scrollBar
System.Windows.Forms (17)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (17)
489
if (
_scrollBar
is null)
494
_scrollBar
.Scroll += OnScroll;
495
Controls.Add(
_scrollBar
);
498
return
_scrollBar
;
985
_scrollBar
?.Dispose();
1787
if (
_scrollBar
is null)
1973
private bool GetScrollbarHidden() =>
_scrollBar
is null || !ScrollBar.Visible;
1994
if (
_scrollBar
is not null)
3211
Debug.Assert(
_scrollBar
is not null);
3213
int large = fullNotches *
_scrollBar
.LargeChange;
3217
initialOffset -= fullNotches *
_scrollBar
.LargeChange;
3218
if (Math.Abs(initialOffset - originalOffset) >= Math.Abs(fullNotches *
_scrollBar
.LargeChange))
3252
if (
_scrollBar
!.Value <=
_scrollBar
.Minimum)
3263
if (
_scrollBar
!.Value > (
_scrollBar
.Maximum - _visibleRows + 1))
4794
_scrollBar
?.ReleaseUiaProvider(HWND.Null);