VsaItems.Remove Method

Definition

Overloads

Remove(Int32)

Removes an item from the collection, as specified by its index value.

Remove(String)

Removes an item from the collection, as specified by its name.

Remove(Int32)

Removes an item from the collection, as specified by its index value.

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

Parameters

index
Int32

The 0-based index value of the item to be removed.

Implements

Applies to

Remove(String)

Removes an item from the collection, as specified by its name.

public:
 virtual void Remove(System::String ^ Name);
public void Remove (string Name);
abstract member Remove : string -> unit
override this.Remove : string -> unit
Public Sub Remove (Name As String)

Parameters

Name
String

The name of the item to be removed from the collection.

Implements

Applies to