TimelineCollection 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 TimelineCollection class.
Overloads
TimelineCollection() |
Initializes a new instance of the TimelineCollection class. |
TimelineCollection(IEnumerable<Timeline>) |
Initializes a new instance of the TimelineCollection class that includes all of the same elements as an existing collection. |
TimelineCollection(Int32) |
Initializes a new instance of TimelineCollection with the specified initial capacity. |
TimelineCollection()
Initializes a new instance of the TimelineCollection class.
public:
TimelineCollection();
public TimelineCollection ();
Public Sub New ()
Applies to
TimelineCollection(IEnumerable<Timeline>)
Initializes a new instance of the TimelineCollection class that includes all of the same elements as an existing collection.
public:
TimelineCollection(System::Collections::Generic::IEnumerable<System::Windows::Media::Animation::Timeline ^> ^ collection);
public TimelineCollection (System.Collections.Generic.IEnumerable<System.Windows.Media.Animation.Timeline> collection);
new System.Windows.Media.Animation.TimelineCollection : seq<System.Windows.Media.Animation.Timeline> -> System.Windows.Media.Animation.TimelineCollection
Public Sub New (collection As IEnumerable(Of Timeline))
Parameters
- collection
- IEnumerable<Timeline>
Collection of elements this instance is based on.
Exceptions
Occurs when collection
is empty.
Applies to
TimelineCollection(Int32)
Initializes a new instance of TimelineCollection with the specified initial capacity.
public:
TimelineCollection(int capacity);
public TimelineCollection (int capacity);
new System.Windows.Media.Animation.TimelineCollection : int -> System.Windows.Media.Animation.TimelineCollection
Public Sub New (capacity As Integer)
Parameters
- capacity
- Int32
The initial capacity of the TimelineCollection.