VsaItems.Remove 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.
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.