言語

Timeline コンストラクター

定義

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

オーバーロード

名前 説明
Timeline()

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

Timeline(Nullable<TimeSpan>)

指定したTimelineを使用して、BeginTime クラスの新しいインスタンスを初期化します。

Timeline(Nullable<TimeSpan>, Duration)

指定したTimelineBeginTimeを使用して、Duration クラスの新しいインスタンスを初期化します。

Timeline(Nullable<TimeSpan>, Duration, RepeatBehavior)

指定したTimelineBeginTime、およびDurationを使用して、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

繰り返しをカウントせず、このタイムラインが再生される時間の長さ。 詳細については、 Duration プロパティを参照してください。

BeginTime

Duration

適用対象

Timeline(Nullable<TimeSpan>, Duration, RepeatBehavior)

指定したTimelineBeginTime、およびDurationを使用して、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

繰り返しをカウントせず、このタイムラインが再生される時間の長さ。 詳細については、 Duration プロパティを参照してください。

repeatBehavior
RepeatBehavior

反復 Count または繰り返し Durationとしての、このタイムラインの繰り返し動作。 詳細については、 RepeatBehavior プロパティを参照してください。

BeginTime

Duration

適用対象