TypeElementCollection.RemoveAt Method

Definition

Removes a specified element from the collection.

Overloads

RemoveAt(Int32)

Removes the element at the specified index in the collection.

RemoveAt(Object)

Removes the TypeElement with the specified key from the collection.

RemoveAt(Int32)

Removes the element at the specified index in the collection.

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

Parameters

index
Int32

The zero-based index of the TypeElement to remove from the collection.

Applies to

RemoveAt(Object)

Removes the TypeElement with the specified key from the collection.

public:
 void RemoveAt(System::Object ^ key);
public void RemoveAt (object key);
member this.RemoveAt : obj -> unit
Public Sub RemoveAt (key As Object)

Parameters

key
Object

The key of the TypeElement to be removed from the collection.

Applies to