VisualCollection.RemoveAt(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
移除 VisualCollection 中所指定索引處的視覺物件。
public:
void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
參數
- index
- Int32
要移除之視覺項目之以零起始的索引。
例外狀況
index
小於零,或 index
等於或大於 Count。
備註
在移除的物件後面的視覺物件會移位以佔用空置的位置,並更新其索引值。
方法 RemoveAt 也會移除父視覺效果之間的父子關聯性,也就是 的擁有者 VisualCollection ,以及子 visual
系 。
如果您需要對視覺子物件的基礎儲存實作進行更高的低階控制,請考慮使用 AddVisualChild 和 RemoveVisualChild 方法。 當您使用這些方法時,您會定義自己的儲存體實作,而且不使用 VisualCollection 。