5 references to WS_VSCROLL
UIAutomationClientsideProviders (5)
MS\Internal\AutomationProxies\NonClientArea.cs (1)
509if (Misc.IsBitSet(style, NativeMethods.WS_VSCROLL) && Misc.IsBitSet(style, NativeMethods.WS_HSCROLL))
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
767if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_VSCROLL))
MS\Internal\AutomationProxies\WindowsScroll.cs (2)
125(sbFlag == NativeMethods.SB_VERT && !Misc.IsBitSet(style, NativeMethods.WS_VSCROLL))) 169bool hasScrollableStyle = Misc.IsBitSet(style, NativeMethods.WS_HSCROLL) || Misc.IsBitSet(style, NativeMethods.WS_VSCROLL);
MS\Internal\AutomationProxies\WindowsScrollBar.cs (1)
430return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_VSCROLL);