VectorCollection Constructors

Definition

Initializes a new instance of the VectorCollection class.

Overloads

VectorCollection()

Initializes a new instance of the VectorCollection class.

VectorCollection(IEnumerable<Vector>)

Initializes a new instance of the VectorCollection class that contains items copied from the specified collection of Vector values and has the same initial capacity as the number of items copied.

VectorCollection(Int32)

Initializes a new instance of the VectorCollection class with the specified capacity.

VectorCollection()

Initializes a new instance of the VectorCollection class.

public:
 VectorCollection();
public VectorCollection ();
Public Sub New ()

Applies to

VectorCollection(IEnumerable<Vector>)

Initializes a new instance of the VectorCollection class that contains items copied from the specified collection of Vector values and has the same initial capacity as the number of items copied.

public:
 VectorCollection(System::Collections::Generic::IEnumerable<System::Windows::Vector> ^ collection);
public VectorCollection (System.Collections.Generic.IEnumerable<System.Windows.Vector> collection);
new System.Windows.Media.VectorCollection : seq<System.Windows.Vector> -> System.Windows.Media.VectorCollection
Public Sub New (collection As IEnumerable(Of Vector))

Parameters

collection
IEnumerable<Vector>

The collection whose items are copied to the new VectorCollection.

Exceptions

collection is null.

Applies to

VectorCollection(Int32)

Initializes a new instance of the VectorCollection class with the specified capacity.

public:
 VectorCollection(int capacity);
public VectorCollection (int capacity);
new System.Windows.Media.VectorCollection : int -> System.Windows.Media.VectorCollection
Public Sub New (capacity As Integer)

Parameters

capacity
Int32

The number of Vector values that the collection is initially capable of storing.

Applies to