10 references to GetItemNext
UIAutomationClientsideProviders (10)
MS\Internal\AutomationProxies\WindowsListView.cs (9)
485int index = GetItemNext(_hwnd, -1, NativeMethods.LVNI_FOCUSED); 576for (int itemPos = GetItemNext(_hwnd, -1, NativeMethods.LVNI_SELECTED); itemPos != -1; itemPos = GetItemNext(_hwnd, itemPos, NativeMethods.LVNI_SELECTED)) 1017int nextItem = GetItemNext(hwnd, curItem, NativeMethods.LVNI_TORIGHT); 1072int next = GetItemNext(hwnd, current, NativeMethods.LVNI_BELOW); 1232for (int index = GetItemNext(hwnd, -1, NativeMethods.LVNI_SELECTED); index != -1; index = GetItemNext(hwnd, index, NativeMethods.LVNI_SELECTED)) 1242return GetItemNext(hwnd, -1, NativeMethods.LVNI_SELECTED); 1775int nextItem = GetItemNext(hwnd, curItem, NativeMethods.LVNI_BELOW);
MS\Internal\AutomationProxies\WindowsListViewGroup.cs (1)
473int index = WindowsListView.GetItemNext(hwnd, -1, NativeMethods.LVNI_FOCUSED);