IJSVsaItems.Remove 方法

定义

从集合中删除某一项。

重载

Remove(Int32)

从集合中移除按照项的索引值指定的项。

Remove(String)

从集合中移除按照项的名称指定的项。

Remove(Int32)

从集合中移除按照项的索引值指定的项。

public:
 void Remove(int index);
public void Remove (int index);
abstract member Remove : int -> unit
Public Sub Remove (index As Integer)

参数

index
Int32

要移除的项的索引值。

适用于

Remove(String)

从集合中移除按照项的名称指定的项。

public:
 void Remove(System::String ^ name);
public void Remove (string name);
abstract member Remove : string -> unit
Public Sub Remove (name As String)

参数

name
String

要从集合中移除的项的名称。

适用于