AODL.Document.Forms.Controls.ODFComboBox.GetItemByLabel C# (CSharp) Метод

GetItemByLabel() публичный Метод

Looks for a specified item by its label
public GetItemByLabel ( string label ) : ODFItem
label string
Результат ODFItem
		public ODFItem GetItemByLabel(string label)
		{
			foreach (ODFItem it in _items)
			{
				if (it.Label == label)
				{
					return it;
				}
			}
			return null;
		}