ItemCollection.RemoveAt(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes the item at the specified index of the collection or view.
public:
virtual void RemoveAt(int removeIndex);
public void RemoveAt (int removeIndex);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Sub RemoveAt (removeIndex As Integer)
Parameters
- removeIndex
- Int32
The zero-based index of the item to remove.
Implements
Exceptions
The ItemCollection is read-only because it is in ItemsSource mode or if DeferRefresh is in effect.
The index is out of range.
Remarks
When an item is removed from the collection, any remaining items with higher index values decrement their index by one as the size of the collection collapses.
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET