ToolboxCategory.IList.RemoveAt(Int32) Método
Definição
Remove a ferramenta no índice especificado da coleção ToolboxCategory.Removes the tool at the specified index of the ToolboxCategory collection.
virtual void System.Collections.IList.RemoveAt(int index) = System::Collections::IList::RemoveAt;
void IList.RemoveAt (int index);
abstract member System.Collections.IList.RemoveAt : int -> unit
override this.System.Collections.IList.RemoveAt : int -> unit
Sub RemoveAt (index As Integer) Implements IList.RemoveAt
Parâmetros
- index
- Int32
O índice de base zero do item a ser removido.The zero-based index of the tool item to remove.
Implementações
Exceções
O index não é válido para a coleção ToolboxCategory.The index is not valid for the ToolboxCategory collection.
Comentários
ToolboxCategory implementa a interface IList.ToolboxCategory implements the IList interface.
Em coleções de elementos contíguos, como listas, os elementos que seguem o elemento removido sobem para ocupar o ponto vazio.In collections of contiguous elements, such as lists, the elements that follow the removed element move up to occupy the vacated spot. Caso a coleção seja indexada, os índices dos elementos que são movidos também são atualizados.If the collection is indexed, the indexes of the elements that are moved are also updated.