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.
Removes an item from the collection.
Overloads
Remove(Int32) |
This API supports the product infrastructure and is not intended to be used directly from your code. Removes the item that is designated by the specified index value from the collection. |
Remove(String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Removes the item that is designated by the specified name from the collection. |
Remove(Int32)
Removes the item that is designated by the specified index value from the collection.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
virtual void Remove(int itemIndex);
public void Remove (int itemIndex);
abstract member Remove : int -> unit
override this.Remove : int -> unit
Public Sub Remove (itemIndex As Integer)
Parameters
- itemIndex
- Int32
The index of the item to remove.
Implements
See also
Applies to
Remove(String)
Removes the item that is designated by the specified name from the collection.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
virtual void Remove(System::String ^ itemName);
public void Remove (string itemName);
abstract member Remove : string -> unit
override this.Remove : string -> unit
Public Sub Remove (itemName As String)
Parameters
- itemName
- String
The name of the item to remove.