GeneralTransform3DCollection 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 GeneralTransform3DCollection class.
Overloads
GeneralTransform3DCollection() |
Initializes a new instance of the GeneralTransform3DCollection class. |
GeneralTransform3DCollection(IEnumerable<GeneralTransform3D>) |
Initializes a new instance of the GeneralTransform3DCollection class, using the specified initial object. |
GeneralTransform3DCollection(Int32) |
Initializes a new instance of the GeneralTransform3DCollection class with the specified capacity, or the number of GeneralTransform3D objects the collection is initially capable of storing. |
GeneralTransform3DCollection()
Initializes a new instance of the GeneralTransform3DCollection class.
public:
GeneralTransform3DCollection();
public GeneralTransform3DCollection ();
Public Sub New ()
Remarks
GeneralTransform3DCollection() is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.
Applies to
GeneralTransform3DCollection(IEnumerable<GeneralTransform3D>)
Initializes a new instance of the GeneralTransform3DCollection class, using the specified initial object.
public:
GeneralTransform3DCollection(System::Collections::Generic::IEnumerable<System::Windows::Media::Media3D::GeneralTransform3D ^> ^ collection);
public GeneralTransform3DCollection (System.Collections.Generic.IEnumerable<System.Windows.Media.Media3D.GeneralTransform3D> collection);
new System.Windows.Media.Media3D.GeneralTransform3DCollection : seq<System.Windows.Media.Media3D.GeneralTransform3D> -> System.Windows.Media.Media3D.GeneralTransform3DCollection
Public Sub New (collection As IEnumerable(Of GeneralTransform3D))
Parameters
- collection
- IEnumerable<GeneralTransform3D>
Initial object in the new collection class.
Exceptions
collection
is null
.
Remarks
GeneralTransform3DCollection(IEnumerable<GeneralTransform3D>) is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.
Applies to
GeneralTransform3DCollection(Int32)
Initializes a new instance of the GeneralTransform3DCollection class with the specified capacity, or the number of GeneralTransform3D objects the collection is initially capable of storing.
public:
GeneralTransform3DCollection(int capacity);
public GeneralTransform3DCollection (int capacity);
new System.Windows.Media.Media3D.GeneralTransform3DCollection : int -> System.Windows.Media.Media3D.GeneralTransform3DCollection
Public Sub New (capacity As Integer)
Parameters
- capacity
- Int32
The number of GeneralTransform3D objects that the collection is initially capable of storing.
Remarks
GeneralTransform3DCollection(Int32) is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.