MediaTimeline コンストラクター

定義

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

オーバーロード

MediaTimeline()

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

MediaTimeline(Nullable<TimeSpan>)

指定した時刻から始まる、MediaTimeline クラスの新しいインスタンスを初期化します。

MediaTimeline(Uri)

指定された URI をメディア ソースとして使用して、クラスの新しいインスタンス MediaTimeline を初期化します。

MediaTimeline(Nullable<TimeSpan>, Duration)

指定した時刻から始まり、指定した期間継続する MediaTimeline の新しいインスタンスを初期化します。

MediaTimeline(Nullable<TimeSpan>, Duration, RepeatBehavior)

指定した時刻から始まり、指定した時間で終了し、指定した繰り返し動作を持つ MediaTimeline クラスの新しいインスタンスを初期化します。

MediaTimeline()

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

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

適用対象

MediaTimeline(Nullable<TimeSpan>)

指定した時刻から始まる、MediaTimeline クラスの新しいインスタンスを初期化します。

public:
 MediaTimeline(Nullable<TimeSpan> beginTime);
public MediaTimeline (TimeSpan? beginTime);
new System.Windows.Media.MediaTimeline : Nullable<TimeSpan> -> System.Windows.Media.MediaTimeline
Public Sub New (beginTime As Nullable(Of TimeSpan))

パラメーター

beginTime
Nullable<TimeSpan>

タイムラインを開始する時刻。

適用対象

MediaTimeline(Uri)

指定された URI をメディア ソースとして使用して、クラスの新しいインスタンス MediaTimeline を初期化します。

public:
 MediaTimeline(Uri ^ source);
public MediaTimeline (Uri source);
new System.Windows.Media.MediaTimeline : Uri -> System.Windows.Media.MediaTimeline
Public Sub New (source As Uri)

パラメーター

source
Uri

タイムラインのメディア ソース。

適用対象

MediaTimeline(Nullable<TimeSpan>, Duration)

指定した時刻から始まり、指定した期間継続する MediaTimeline の新しいインスタンスを初期化します。

public:
 MediaTimeline(Nullable<TimeSpan> beginTime, System::Windows::Duration duration);
public MediaTimeline (TimeSpan? beginTime, System.Windows.Duration duration);
new System.Windows.Media.MediaTimeline : Nullable<TimeSpan> * System.Windows.Duration -> System.Windows.Media.MediaTimeline
Public Sub New (beginTime As Nullable(Of TimeSpan), duration As Duration)

パラメーター

beginTime
Nullable<TimeSpan>

メディアの再生を開始する時刻。

duration
Duration

メディアの再生に要する時間。

適用対象

MediaTimeline(Nullable<TimeSpan>, Duration, RepeatBehavior)

指定した時刻から始まり、指定した時間で終了し、指定した繰り返し動作を持つ MediaTimeline クラスの新しいインスタンスを初期化します。

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

パラメーター

beginTime
Nullable<TimeSpan>

メディアの再生を開始する時刻。

duration
Duration

メディアの再生に要する時間。

repeatBehavior
RepeatBehavior

再生期間に到達したときに使用する繰り返し動作。

適用対象