ToolboxCategory.IList.Remove(Object) Método
Definição
Remove a primeira ocorrência de uma ferramenta específica do ToolboxCategory.Removes the first occurrence of a specific tool from the ToolboxCategory.
virtual void System.Collections.IList.Remove(System::Object ^ value) = System::Collections::IList::Remove;
void IList.Remove (object value);
abstract member System.Collections.IList.Remove : obj -> unit
override this.System.Collections.IList.Remove : obj -> unit
Sub Remove (value As Object) Implements IList.Remove
Parâmetros
- value
- Object
A ferramenta Object a remover do ToolboxCategory.The tool Object to remove from the ToolboxCategory.
Implementações
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.