System.Windows.Forms.ToolStripItemCollection.this C# (CSharp) Method

this() public method

public this ( string key ) : ToolStripItem
key string
return ToolStripItem
		public virtual ToolStripItem this[string key] {
			get {
				foreach (ToolStripItem tsi in this)
					if (tsi.Name == key)
						return tsi;

				return null;
			}
		}
		#endregion

Same methods

ToolStripItemCollection::this ( int index ) : ToolStripItem
ToolStripItemCollection::this ( int index ) : objectIList.System.Drawing