27 references to SB_VERT
UIAutomationClientSideProviders (27)
MS\Internal\AutomationProxies\NonClientArea.cs (4)
477return new WindowsListViewScrollBar (_hwnd, this, (int) item, NativeMethods.SB_VERT); 479return new WindowsScrollBar (_hwnd, this, (int) item, NativeMethods.SB_VERT); 673int sbFlag = idObject == NativeMethods.OBJID_HSCROLL ? NativeMethods.SB_HORZ : NativeMethods.SB_VERT; 709WindowsScrollBar scrollBar = new WindowsScrollBar(hwnd, el, (int)item, idObject == NativeMethods.OBJID_HSCROLL ? NativeMethods.SB_HORZ : NativeMethods.SB_VERT);
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
709bool ok = Misc.GetScrollInfo(WindowHandle, NativeMethods.SB_VERT, ref si);
MS\Internal\AutomationProxies\WindowsListView.cs (2)
629bool fVt = SetScrollPercent (verticalPercent, NativeMethods.SB_VERT, cy, out dy); 650SetScrollPercent(verticalPercent, NativeMethods.SB_VERT, cy, out dy);
MS\Internal\AutomationProxies\WindowsListViewGroupHelper.cs (1)
743if (WindowScroll.Scrollable(_hwnd, NativeMethods.SB_VERT))
MS\Internal\AutomationProxies\WindowsScroll.cs (10)
43bool isVertical = SetScrollPercent (hwnd, verticalPercent, NativeMethods.SB_VERT, out resultsNoCheck); 68bool fVt = ScrollCursor (hwnd, VerticalAmount, NativeMethods.SB_VERT, fForceResults); 86return Scrollable (hwnd, NativeMethods.SB_VERT) ? GetScrollInfo (hwnd, NativeMethods.SB_VERT) : ScrollPattern.NoScroll; 94return Scrollable (hwnd, NativeMethods.SB_VERT) ? ScrollViewSize (hwnd, NativeMethods.SB_VERT) : 100.0; 102return Scrollable (hwnd, NativeMethods.SB_VERT); 114(sbFlag == NativeMethods.SB_VERT && !Misc.IsBitSet(style, NativeMethods.WS_VSCROLL))) 129(sbFlag == NativeMethods.SB_VERT) ? NativeMethods.OBJID_VSCROLL : NativeMethods.OBJID_HSCROLL; 174return Scrollable(hwnd, NativeMethods.SB_HORZ) || Scrollable(hwnd, NativeMethods.SB_VERT);
MS\Internal\AutomationProxies\WindowsScrollBar.cs (7)
46_sAutomationId = sbFlag == NativeMethods.SB_VERT ? "Vertical ScrollBar" : "Horizontal ScrollBar"; // This string is a non-localizable string 137int idObject = _sbFlag == NativeMethods.SB_VERT ? NativeMethods.OBJID_VSCROLL : _sbFlag == NativeMethods.SB_HORZ ? NativeMethods.OBJID_HSCROLL : NativeMethods.OBJID_CLIENT; 165if (_sbFlag == NativeMethods.SB_VERT) 424return sbFlag == NativeMethods.SB_VERT; 443int idObject = sbFlag == NativeMethods.SB_VERT ? NativeMethods.OBJID_VSCROLL : sbFlag == NativeMethods.SB_HORZ ? NativeMethods.OBJID_HSCROLL : NativeMethods.OBJID_CLIENT; 709int idObject = sbFlag == NativeMethods.SB_VERT ? NativeMethods.OBJID_VSCROLL : sbFlag == NativeMethods.SB_HORZ ? NativeMethods.OBJID_HSCROLL : NativeMethods.OBJID_CLIENT; 729if (_sbFlag == NativeMethods.SB_VERT)
MS\Internal\AutomationProxies\WindowsScrollBarBits.cs (2)
221int idObject = sbFlag == NativeMethods.SB_VERT ? NativeMethods.OBJID_VSCROLL : sbFlag == NativeMethods.SB_HORZ ? NativeMethods.OBJID_HSCROLL : NativeMethods.OBJID_CLIENT; 241if (sbFlag == NativeMethods.SB_VERT)