SIL.FieldWorks.Common.Widgets.FwComboBox.FindStringExact C# (CSharp) Method

FindStringExact() public method

Find the index where exactly this string occurs in the list, or -1 if it does not.
public FindStringExact ( ITsString tss ) : int
tss ITsString
return int
		public int FindStringExact(ITsString tss)
		{
			CheckDisposed();

			return ListBox.FindIndexOfTss(tss);
		}

Same methods

FwComboBox::FindStringExact ( string str ) : int