Model3DCollection 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 Model3DCollection class.
Overloads
Model3DCollection() |
Initializes a new instance of the Model3DCollection class. |
Model3DCollection(IEnumerable<Model3D>) |
Initializes a new instance of the Model3DCollection class using the specified collection. |
Model3DCollection(Int32) |
Initializes a new instance of the Model3DCollection class with the specified capacity. |
Model3DCollection()
Initializes a new instance of the Model3DCollection class.
public:
Model3DCollection();
public Model3DCollection ();
Public Sub New ()
Applies to
Model3DCollection(IEnumerable<Model3D>)
Initializes a new instance of the Model3DCollection class using the specified collection.
public:
Model3DCollection(System::Collections::Generic::IEnumerable<System::Windows::Media::Media3D::Model3D ^> ^ collection);
public Model3DCollection (System.Collections.Generic.IEnumerable<System.Windows.Media.Media3D.Model3D> collection);
new System.Windows.Media.Media3D.Model3DCollection : seq<System.Windows.Media.Media3D.Model3D> -> System.Windows.Media.Media3D.Model3DCollection
Public Sub New (collection As IEnumerable(Of Model3D))
Parameters
- collection
- IEnumerable<Model3D>
Collection with which to instantiate the Model3DCollection.
Applies to
Model3DCollection(Int32)
Initializes a new instance of the Model3DCollection class with the specified capacity.
public:
Model3DCollection(int capacity);
public Model3DCollection (int capacity);
new System.Windows.Media.Media3D.Model3DCollection : int -> System.Windows.Media.Media3D.Model3DCollection
Public Sub New (capacity As Integer)
Parameters
- capacity
- Int32
Integer that specifies the capacity of the Model3DCollection.