GeneralTransformCollection Constructors
Definition
Creates a new GeneralTransformCollection object.
Overloads
GeneralTransformCollection() |
Initializes a new instance of the GeneralTransformCollection class. |
GeneralTransformCollection(IEnumerable<GeneralTransform>) |
Initializes a new instance of the GeneralTransformCollection class. |
GeneralTransformCollection(Int32) |
Initializes a new instance of the GeneralTransformCollection class with the specified capacity, or the number of GeneralTransform objects the collection is initially capable of storing. |
GeneralTransformCollection()
Initializes a new instance of the GeneralTransformCollection class.
public:
GeneralTransformCollection();
public GeneralTransformCollection ();
Public Sub New ()
Applies to
GeneralTransformCollection(IEnumerable<GeneralTransform>)
Initializes a new instance of the GeneralTransformCollection class.
public:
GeneralTransformCollection(System::Collections::Generic::IEnumerable<System::Windows::Media::GeneralTransform ^> ^ collection);
public GeneralTransformCollection (System.Collections.Generic.IEnumerable<System.Windows.Media.GeneralTransform> collection);
new System.Windows.Media.GeneralTransformCollection : seq<System.Windows.Media.GeneralTransform> -> System.Windows.Media.GeneralTransformCollection
Public Sub New (collection As IEnumerable(Of GeneralTransform))
Parameters
- collection
- IEnumerable<GeneralTransform>
Initial object in the new collection class.
Exceptions
collection
is null
.
Applies to
GeneralTransformCollection(Int32)
Initializes a new instance of the GeneralTransformCollection class with the specified capacity, or the number of GeneralTransform objects the collection is initially capable of storing.
public:
GeneralTransformCollection(int capacity);
public GeneralTransformCollection (int capacity);
new System.Windows.Media.GeneralTransformCollection : int -> System.Windows.Media.GeneralTransformCollection
Public Sub New (capacity As Integer)
Parameters
- capacity
- Int32
The number of GeneralTransform objects that the collection is initially capable of storing.