17 references to InnerList
System.Windows.Forms (17)
winforms\Managed\System\WinForms\ListView.cs (17)
8329
return
InnerList
.Count;
8373
if (index < 0 || index >=
InnerList
.Count) {
8377
return
InnerList
[index];
8380
if (index < 0 || index >=
InnerList
.Count) {
8384
InnerList
[index] = value;
8468
InnerList
.Add(value);
8524
InnerList
.AddRange(items);
8538
InnerList
.AddRange(itemArray);
8546
InnerList
.Clear();
8554
return
InnerList
.Contains(item);
8581
InnerList
.CopyTo(dest, index);
8637
if (this.
InnerList
.OwnerIsVirtualListView && !this.
InnerList
.OwnerIsDesignMode) {
8641
return
InnerList
.GetEnumerator();
8715
InnerList
.Insert(index, item);
8783
InnerList
.Remove(item);
8795
InnerList
.RemoveAt(index);