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