ChartElementCollection<T>.InsertItem(Int32, T) Método
Definição
Insere um elemento Collection<T> no local do índice especificado.Inserts an element into the Collection<T> at the specified index location.
protected:
override void InsertItem(int index, T item);
protected override void InsertItem (int index, T item);
override this.InsertItem : int * 'T -> unit
Protected Overrides Sub InsertItem (index As Integer, item As T)
Parâmetros
- index
- Int32
O local do índice baseado em zero no qual o item será inserido.The zero-based index location of the item will be inserted.
- item
- T
O objeto a ser inserido.The object to insert. O valor pode ser null para tipos de referência.The value can be null for reference types.