5 references to WS_VSCROLL
UIAutomationClientSideProviders (5)
MS\Internal\AutomationProxies\NonClientArea.cs (1)
501if (Misc.IsBitSet(style, NativeMethods.WS_VSCROLL) && Misc.IsBitSet(style, NativeMethods.WS_HSCROLL))
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
701if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_VSCROLL))
MS\Internal\AutomationProxies\WindowsScroll.cs (2)
114(sbFlag == NativeMethods.SB_VERT && !Misc.IsBitSet(style, NativeMethods.WS_VSCROLL))) 158bool hasScrollableStyle = Misc.IsBitSet(style, NativeMethods.WS_HSCROLL) || Misc.IsBitSet(style, NativeMethods.WS_VSCROLL);
MS\Internal\AutomationProxies\WindowsScrollBar.cs (1)
411return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_VSCROLL);