TimelineCollection コンストラクター

定義

TimelineCollection クラスの新しいインスタンスを初期化します。

オーバーロード

TimelineCollection()

TimelineCollection クラスの新しいインスタンスを初期化します。

TimelineCollection(IEnumerable<Timeline>)

既存のコレクションと同じ要素をすべて含む、TimelineCollection クラスの新しいインスタンスを初期化します。

TimelineCollection(Int32)

初期量を指定して、TimelineCollection の新しいインスタンスを初期化します。

TimelineCollection()

TimelineCollection クラスの新しいインスタンスを初期化します。

public:
 TimelineCollection();
public TimelineCollection ();
Public Sub New ()

適用対象

TimelineCollection(IEnumerable<Timeline>)

既存のコレクションと同じ要素をすべて含む、TimelineCollection クラスの新しいインスタンスを初期化します。

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))

パラメーター

collection
IEnumerable<Timeline>

このインスタンスの基となる要素のコレクション。

例外

collection が空の場合に発生します。

適用対象

TimelineCollection(Int32)

初期量を指定して、TimelineCollection の新しいインスタンスを初期化します。

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)

パラメーター

capacity
Int32

TimelineCollection の初期量。

適用対象