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

適用対象