10 references to GetItemNext
UIAutomationClientSideProviders (10)
MS\Internal\AutomationProxies\WindowsListView.cs (9)
478int index = GetItemNext(_hwnd, -1, NativeMethods.LVNI_FOCUSED); 569for (int itemPos = GetItemNext(_hwnd, -1, NativeMethods.LVNI_SELECTED); itemPos != -1; itemPos = GetItemNext(_hwnd, itemPos, NativeMethods.LVNI_SELECTED)) 1009int nextItem = GetItemNext(hwnd, curItem, NativeMethods.LVNI_TORIGHT); 1064int next = GetItemNext(hwnd, current, NativeMethods.LVNI_BELOW); 1224for (int index = GetItemNext(hwnd, -1, NativeMethods.LVNI_SELECTED); index != -1; index = GetItemNext(hwnd, index, NativeMethods.LVNI_SELECTED)) 1234return GetItemNext(hwnd, -1, NativeMethods.LVNI_SELECTED); 1769int nextItem = GetItemNext(hwnd, curItem, NativeMethods.LVNI_BELOW);
MS\Internal\AutomationProxies\WindowsListViewGroup.cs (1)
466int index = WindowsListView.GetItemNext(hwnd, -1, NativeMethods.LVNI_FOCUSED);