Implemented interface member:
method
IndexOf
System.Collections.IList.IndexOf(System.Object)
11 references to IndexOf
System.Web.Mobile (2)
UI\MobileControls\Design\AppliedDeviceFiltersDialog.cs (1)
383
int index = _cbAvailableFilters.Items.
IndexOf
(currentFilter);
UI\MobileControls\Design\PropertyOverridesDialog.cs (1)
1218
int index = comboBox.Items.
IndexOf
(selectedItem);
System.Windows.Forms (3)
winforms\Managed\System\WinForms\ComboBox.cs (3)
1096
x = itemsCollection.
IndexOf
(value);
4263
return
IndexOf
(value) != -1;
4674
return _owningComboBox.Items.
IndexOf
(_owningItem);
System.Workflow.ComponentModel (6)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (6)
174
int userHeaderIndex = this.headerTextComboBox.Items.
IndexOf
(userHeader);
179
this.headerTextComboBox.SelectedIndex = this.headerTextComboBox.Items.
IndexOf
(this.headerFooterCustom);
189
if (this.headerAlignmentComboBox.Items.
IndexOf
(this.printDocument.PageSetupData.HeaderAlignment) != -1)
210
int userFooterIndex = this.footerTextComboBox.Items.
IndexOf
(userFooter);
215
this.footerTextComboBox.SelectedIndex = this.footerTextComboBox.Items.
IndexOf
(this.headerFooterCustom);
225
if (this.footerAlignmentComboBox.Items.
IndexOf
(this.printDocument.PageSetupData.FooterAlignment) != -1)