6 references to IndexOf
UIAutomationClientSideProviders (6)
MS\Internal\AutomationProxies\WindowsListView.cs (1)
1606if (gi.IndexOf (item) != -1)
MS\Internal\AutomationProxies\WindowsListViewGroup.cs (2)
134int nextLocation = groupInfo.IndexOf (current) + 1; //Array.IndexOf(items, current) + 1; 196int prevLocation = groupInfo.IndexOf (current) - 1;
MS\Internal\AutomationProxies\WindowsListViewItem.cs (2)
990int position = groupInfo.IndexOf (_item); //Array.IndexOf(groupInfo._items, _item); 1023int position = groupInfo.IndexOf (_item);
MS\Internal\AutomationProxies\WindowsListViewSubItem.cs (1)
267int row = groupInfo.IndexOf (_itemParent);