29 references to InnerArray
System.Windows.Forms (29)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (28)
880
dataGridViewCell.Items.AddRangeInternal(this.Items.
InnerArray
.ToArray());
1552
comboBox.Items.AddRange(this.Items.
InnerArray
.ToArray());
2786
return this.
InnerArray
.Count;
2865
int index = this.
InnerArray
.Add(item);
2872
this.
InnerArray
.Sort(this.Comparer);
2873
index = this.
InnerArray
.IndexOf(item);
2880
this.
InnerArray
.Remove(item);
2939
this.
InnerArray
.AddRange(items);
2942
this.
InnerArray
.Sort(this.Comparer);
2948
this.
InnerArray
.Sort(this.Comparer);
2959
if (index < 0 || index >= this.
InnerArray
.Count)
2963
return this.
InnerArray
[index];
2975
if (index < 0 || index >= this.
InnerArray
.Count)
2980
this.
InnerArray
[index] = value;
2991
if (this.
InnerArray
.Count > 0)
2995
this.
InnerArray
.Clear();
3002
this.
InnerArray
.Clear();
3020
int count = this.
InnerArray
.Count;
3023
destination[i + arrayIndex] = this.
InnerArray
[i];
3031
int count = this.
InnerArray
.Count;
3034
destination.SetValue(this.
InnerArray
[i], i + index);
3044
return this.
InnerArray
.GetEnumerator();
3057
return this.
InnerArray
.IndexOf(value);
3078
if (index < 0 || index > this.
InnerArray
.Count)
3091
this.
InnerArray
.Insert(index, item);
3103
int index = this.
InnerArray
.IndexOf(value);
3120
if (index < 0 || index >= this.
InnerArray
.Count)
3124
this.
InnerArray
.RemoveAt(index);
winforms\Managed\System\WinForms\DataGridViewComboBoxColumn.cs (1)
527
object[] items = ((DataGridViewComboBoxCell)this.CellTemplate).Items.
InnerArray
.ToArray();