18 references to _innerList
System.Windows.Forms (18)
winforms\Managed\System\WinForms\TableLayoutStyleCollection.cs (18)
41int index = _innerList.Add(style); 58_innerList.Insert(index, style); 66get { return _innerList[index]; } 71_innerList[index] = style; 87_innerList.Remove(style); 93foreach(TableLayoutStyle style in _innerList) { 96_innerList.Clear(); 102TableLayoutStyle style = (TableLayoutStyle) _innerList[index]; 104_innerList.RemoveAt(index); 109bool IList.Contains(object style) { return _innerList.Contains(style); } 110int IList.IndexOf(object style) { return _innerList.IndexOf(style); } 113bool IList.IsFixedSize { get {return _innerList.IsFixedSize;} } 114bool IList.IsReadOnly { get {return _innerList.IsReadOnly;} } 115void ICollection.CopyTo(System.Array array, int startIndex) { _innerList.CopyTo(array, startIndex); } 118public int Count { get { return _innerList.Count; }} 119bool ICollection.IsSynchronized { get{ return _innerList.IsSynchronized; }} 120object ICollection.SyncRoot { get { return _innerList.SyncRoot; }} 121IEnumerator IEnumerable.GetEnumerator() { return _innerList.GetEnumerator(); }