10 references to GetItemNext
UIAutomationClientSideProviders (10)
MS\Internal\AutomationProxies\WindowsListView.cs (9)
471int index = GetItemNext(_hwnd, -1, NativeMethods.LVNI_FOCUSED); 562for (int itemPos = GetItemNext(_hwnd, -1, NativeMethods.LVNI_SELECTED); itemPos != -1; itemPos = GetItemNext(_hwnd, itemPos, NativeMethods.LVNI_SELECTED)) 1002int nextItem = GetItemNext(hwnd, curItem, NativeMethods.LVNI_TORIGHT); 1057int next = GetItemNext(hwnd, current, NativeMethods.LVNI_BELOW); 1217for (int index = GetItemNext(hwnd, -1, NativeMethods.LVNI_SELECTED); index != -1; index = GetItemNext(hwnd, index, NativeMethods.LVNI_SELECTED)) 1227return GetItemNext(hwnd, -1, NativeMethods.LVNI_SELECTED); 1763int nextItem = GetItemNext(hwnd, curItem, NativeMethods.LVNI_BELOW);
MS\Internal\AutomationProxies\WindowsListViewGroup.cs (1)
463int index = WindowsListView.GetItemNext(hwnd, -1, NativeMethods.LVNI_FOCUSED);