27 references to SB_VERT
UIAutomationClientsideProviders (27)
MS\Internal\AutomationProxies\NonClientArea.cs (4)
485return new WindowsListViewScrollBar (_hwnd, this, (int) item, NativeMethods.SB_VERT); 487return new WindowsScrollBar (_hwnd, this, (int) item, NativeMethods.SB_VERT); 687int sbFlag = idObject == NativeMethods.OBJID_HSCROLL ? NativeMethods.SB_HORZ : NativeMethods.SB_VERT; 726WindowsScrollBar scrollBar = new WindowsScrollBar(hwnd, el, (int)item, idObject == NativeMethods.OBJID_HSCROLL ? NativeMethods.SB_HORZ : NativeMethods.SB_VERT);
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
773bool ok = Misc.GetScrollInfo(WindowHandle, NativeMethods.SB_VERT, ref si);
MS\Internal\AutomationProxies\WindowsListView.cs (2)
643bool fVt = SetScrollPercent (verticalPercent, NativeMethods.SB_VERT, cy, out dy); 664SetScrollPercent(verticalPercent, NativeMethods.SB_VERT, cy, out dy);
MS\Internal\AutomationProxies\WindowsListViewGroupHelper.cs (1)
757if (WindowScroll.Scrollable(_hwnd, NativeMethods.SB_VERT))
MS\Internal\AutomationProxies\WindowsScroll.cs (10)
54bool isVertical = SetScrollPercent (hwnd, verticalPercent, NativeMethods.SB_VERT, out resultsNoCheck); 79bool fVt = ScrollCursor (hwnd, VerticalAmount, NativeMethods.SB_VERT, fForceResults); 97return Scrollable (hwnd, NativeMethods.SB_VERT) ? GetScrollInfo (hwnd, NativeMethods.SB_VERT) : ScrollPattern.NoScroll; 105return Scrollable (hwnd, NativeMethods.SB_VERT) ? ScrollViewSize (hwnd, NativeMethods.SB_VERT) : 100.0; 113return Scrollable (hwnd, NativeMethods.SB_VERT); 125(sbFlag == NativeMethods.SB_VERT && !Misc.IsBitSet(style, NativeMethods.WS_VSCROLL))) 140(sbFlag == NativeMethods.SB_VERT) ? NativeMethods.OBJID_VSCROLL : NativeMethods.OBJID_HSCROLL; 185return Scrollable(hwnd, NativeMethods.SB_HORZ) || Scrollable(hwnd, NativeMethods.SB_VERT);
MS\Internal\AutomationProxies\WindowsScrollBar.cs (7)
57_sAutomationId = sbFlag == NativeMethods.SB_VERT ? "Vertical ScrollBar" : "Horizontal ScrollBar"; // This string is a non-localizable string 155int idObject = _sbFlag == NativeMethods.SB_VERT ? NativeMethods.OBJID_VSCROLL : _sbFlag == NativeMethods.SB_HORZ ? NativeMethods.OBJID_HSCROLL : NativeMethods.OBJID_CLIENT; 183if (_sbFlag == NativeMethods.SB_VERT) 443return sbFlag == NativeMethods.SB_VERT; 462int idObject = sbFlag == NativeMethods.SB_VERT ? NativeMethods.OBJID_VSCROLL : sbFlag == NativeMethods.SB_HORZ ? NativeMethods.OBJID_HSCROLL : NativeMethods.OBJID_CLIENT; 724int idObject = sbFlag == NativeMethods.SB_VERT ? NativeMethods.OBJID_VSCROLL : sbFlag == NativeMethods.SB_HORZ ? NativeMethods.OBJID_HSCROLL : NativeMethods.OBJID_CLIENT; 744if (_sbFlag == NativeMethods.SB_VERT)
MS\Internal\AutomationProxies\WindowsScrollBarBits.cs (2)
231int idObject = sbFlag == NativeMethods.SB_VERT ? NativeMethods.OBJID_VSCROLL : sbFlag == NativeMethods.SB_HORZ ? NativeMethods.OBJID_HSCROLL : NativeMethods.OBJID_CLIENT; 251if (sbFlag == NativeMethods.SB_VERT)