Timeline 생성자

정의

Timeline 클래스의 새 인스턴스를 초기화합니다.

오버로드

Timeline()

Timeline 클래스의 새 인스턴스를 초기화합니다.

Timeline(Nullable<TimeSpan>)

지정된 Timeline를 사용하여 BeginTime 클래스의 새 인스턴스를 초기화합니다.

Timeline(Nullable<TimeSpan>, Duration)

지정된 TimelineBeginTime를 사용하여 Duration 클래스의 새 인스턴스를 초기화합니다.

Timeline(Nullable<TimeSpan>, Duration, RepeatBehavior)

지정된 Timeline, BeginTimeDuration를 사용하여 RepeatBehavior 클래스의 새 인스턴스를 초기화합니다.

Timeline()

Timeline 클래스의 새 인스턴스를 초기화합니다.

protected:
 Timeline();
protected Timeline ();
Protected Sub New ()

적용 대상

Timeline(Nullable<TimeSpan>)

지정된 Timeline를 사용하여 BeginTime 클래스의 새 인스턴스를 초기화합니다.

protected:
 Timeline(Nullable<TimeSpan> beginTime);
protected Timeline (TimeSpan? beginTime);
new System.Windows.Media.Animation.Timeline : Nullable<TimeSpan> -> System.Windows.Media.Animation.Timeline
Protected Sub New (beginTime As Nullable(Of TimeSpan))

매개 변수

beginTime
Nullable<TimeSpan>

Timeline 이 시작되어야 하는 시간을 가져오거나 설정합니다. 자세한 내용은 BeginTime 속성을 참조하세요.

추가 정보

적용 대상

Timeline(Nullable<TimeSpan>, Duration)

지정된 TimelineBeginTime를 사용하여 Duration 클래스의 새 인스턴스를 초기화합니다.

protected:
 Timeline(Nullable<TimeSpan> beginTime, System::Windows::Duration duration);
protected Timeline (TimeSpan? beginTime, System.Windows.Duration duration);
new System.Windows.Media.Animation.Timeline : Nullable<TimeSpan> * System.Windows.Duration -> System.Windows.Media.Animation.Timeline
Protected Sub New (beginTime As Nullable(Of TimeSpan), duration As Duration)

매개 변수

beginTime
Nullable<TimeSpan>

Timeline 이 시작되어야 하는 시간을 가져오거나 설정합니다. 자세한 내용은 BeginTime 속성을 참조하세요.

duration
Duration

반복을 제외하고 이 Timeline이 재생되는 시간입니다. 자세한 내용은 Duration 속성을 참조하세요.

예제

BeginTime

Duration

적용 대상

Timeline(Nullable<TimeSpan>, Duration, RepeatBehavior)

지정된 Timeline, BeginTimeDuration를 사용하여 RepeatBehavior 클래스의 새 인스턴스를 초기화합니다.

protected:
 Timeline(Nullable<TimeSpan> beginTime, System::Windows::Duration duration, System::Windows::Media::Animation::RepeatBehavior repeatBehavior);
protected Timeline (TimeSpan? beginTime, System.Windows.Duration duration, System.Windows.Media.Animation.RepeatBehavior repeatBehavior);
new System.Windows.Media.Animation.Timeline : Nullable<TimeSpan> * System.Windows.Duration * System.Windows.Media.Animation.RepeatBehavior -> System.Windows.Media.Animation.Timeline
Protected Sub New (beginTime As Nullable(Of TimeSpan), duration As Duration, repeatBehavior As RepeatBehavior)

매개 변수

beginTime
Nullable<TimeSpan>

Timeline 이 시작되어야 하는 시간을 가져오거나 설정합니다. 자세한 내용은 BeginTime 속성을 참조하세요.

duration
Duration

반복을 제외하고 이 Timeline이 재생되는 시간입니다. 자세한 내용은 Duration 속성을 참조하세요.

repeatBehavior
RepeatBehavior

이 Timeline의 반복 동작으로, 반복 Count 또는 반복 Duration으로 나타냅니다. 자세한 내용은 RepeatBehavior 속성을 참조하세요.

예제

BeginTime

Duration

적용 대상