VectorCollection Constructors
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.
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)