ToolStripItemCollection.RemoveAt(Int32) 方法

定义

从集合中的指定索引处移除项。

public:
 void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)

参数

index
Int32

要移除的 ToolStripItem 的索引值。

例外

注解

ToolStripItem从 中删除 时,ToolStripItemCollection所有后续控件都将在集合中向上移动一个位置。

还可以使用 Remove 方法删除 ,ToolStripItem或使用 方法删除所有控件Clear

若要向集合添加新 ToolStripItem 对象,请使用 AddAddRange 方法。

适用于