6 references to IndexOf
UIAutomationClientSideProviders (6)
MS\Internal\AutomationProxies\WindowsListView.cs (1)
1612if (gi.IndexOf (item) != -1)
MS\Internal\AutomationProxies\WindowsListViewGroup.cs (2)
137int nextLocation = groupInfo.IndexOf (current) + 1; //Array.IndexOf(items, current) + 1; 199int prevLocation = groupInfo.IndexOf (current) - 1;
MS\Internal\AutomationProxies\WindowsListViewItem.cs (2)
995int position = groupInfo.IndexOf (_item); //Array.IndexOf(groupInfo._items, _item); 1028int position = groupInfo.IndexOf (_item);
MS\Internal\AutomationProxies\WindowsListViewSubItem.cs (1)
269int row = groupInfo.IndexOf (_itemParent);