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