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의 초기 용량입니다.

적용 대상