ListBox.ObjectCollection.Remove(Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從集合中移除指定的物件。
public:
virtual void Remove(System::Object ^ value);
public:
void Remove(System::Object ^ value);
public void Remove (object value);
abstract member Remove : obj -> unit
override this.Remove : obj -> unit
member this.Remove : obj -> unit
Public Sub Remove (value As Object)
參數
- value
- Object
物件,表示要從集合中移除的項目。
實作
備註
當您從清單中移除專案時,索引會變更清單中的後續專案。 已刪除已移除專案的所有資訊。 您可以使用這個方法,藉由指定要從清單中移除的實際專案,從清單中移除特定專案。 若要指定要移除的專案索引,而不是專案本身,請使用 RemoveAt 方法。 若要從清單中移除所有專案,請使用 Clear 方法。