6 references to IndexOf
UIAutomationClientsideProviders (6)
MS\Internal\AutomationProxies\WindowsListView.cs (1)
1618if (gi.IndexOf (item) != -1)
MS\Internal\AutomationProxies\WindowsListViewGroup.cs (2)
144int nextLocation = groupInfo.IndexOf (current) + 1; //Array.IndexOf(items, current) + 1; 206int prevLocation = groupInfo.IndexOf (current) - 1;
MS\Internal\AutomationProxies\WindowsListViewItem.cs (2)
1005int position = groupInfo.IndexOf (_item); //Array.IndexOf(groupInfo._items, _item); 1038int position = groupInfo.IndexOf (_item);
MS\Internal\AutomationProxies\WindowsListViewSubItem.cs (1)
276int row = groupInfo.IndexOf (_itemParent);