27 references to SB_VERT
UIAutomationClientSideProviders (27)
MS\Internal\AutomationProxies\NonClientArea.cs (4)
484return new WindowsListViewScrollBar (_hwnd, this, (int) item, NativeMethods.SB_VERT); 486return new WindowsScrollBar (_hwnd, this, (int) item, NativeMethods.SB_VERT); 686int sbFlag = idObject == NativeMethods.OBJID_HSCROLL ? NativeMethods.SB_HORZ : NativeMethods.SB_VERT; 725WindowsScrollBar scrollBar = new WindowsScrollBar(hwnd, el, (int)item, idObject == NativeMethods.OBJID_HSCROLL ? NativeMethods.SB_HORZ : NativeMethods.SB_VERT);
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
708bool ok = Misc.GetScrollInfo(WindowHandle, NativeMethods.SB_VERT, ref si);
MS\Internal\AutomationProxies\WindowsListView.cs (2)
633bool fVt = SetScrollPercent (verticalPercent, NativeMethods.SB_VERT, cy, out dy); 654SetScrollPercent(verticalPercent, NativeMethods.SB_VERT, cy, out dy);
MS\Internal\AutomationProxies\WindowsListViewGroupHelper.cs (1)
741if (WindowScroll.Scrollable(_hwnd, NativeMethods.SB_VERT))
MS\Internal\AutomationProxies\WindowsScroll.cs (10)
44bool isVertical = SetScrollPercent (hwnd, verticalPercent, NativeMethods.SB_VERT, out resultsNoCheck); 69bool fVt = ScrollCursor (hwnd, VerticalAmount, NativeMethods.SB_VERT, fForceResults); 87return Scrollable (hwnd, NativeMethods.SB_VERT) ? GetScrollInfo (hwnd, NativeMethods.SB_VERT) : ScrollPattern.NoScroll; 95return Scrollable (hwnd, NativeMethods.SB_VERT) ? ScrollViewSize (hwnd, NativeMethods.SB_VERT) : 100.0; 103return Scrollable (hwnd, NativeMethods.SB_VERT); 115(sbFlag == NativeMethods.SB_VERT && !Misc.IsBitSet(style, NativeMethods.WS_VSCROLL))) 130(sbFlag == NativeMethods.SB_VERT) ? NativeMethods.OBJID_VSCROLL : NativeMethods.OBJID_HSCROLL; 175return Scrollable(hwnd, NativeMethods.SB_HORZ) || Scrollable(hwnd, NativeMethods.SB_VERT);
MS\Internal\AutomationProxies\WindowsScrollBar.cs (7)
47_sAutomationId = sbFlag == NativeMethods.SB_VERT ? "Vertical ScrollBar" : "Horizontal ScrollBar"; // This string is a non-localizable string 141int idObject = _sbFlag == NativeMethods.SB_VERT ? NativeMethods.OBJID_VSCROLL : _sbFlag == NativeMethods.SB_HORZ ? NativeMethods.OBJID_HSCROLL : NativeMethods.OBJID_CLIENT; 169if (_sbFlag == NativeMethods.SB_VERT) 428return sbFlag == NativeMethods.SB_VERT; 447int 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)
222int idObject = sbFlag == NativeMethods.SB_VERT ? NativeMethods.OBJID_VSCROLL : sbFlag == NativeMethods.SB_HORZ ? NativeMethods.OBJID_HSCROLL : NativeMethods.OBJID_CLIENT; 242if (sbFlag == NativeMethods.SB_VERT)