ParallelTimeline Constructors

Definition

Initializes a new instance of the ParallelTimeline class.

Overloads

ParallelTimeline()

Initializes a new instance of the ParallelTimeline class.

ParallelTimeline(Nullable<TimeSpan>)

Initializes a new instance of the ParallelTimeline class with the specified BeginTime.

ParallelTimeline(Nullable<TimeSpan>, Duration)

Initializes a new instance of the ParallelTimeline class with the specified BeginTime and Duration.

ParallelTimeline(Nullable<TimeSpan>, Duration, RepeatBehavior)

Initializes a new instance of the ParallelTimeline class with the specified BeginTime, Duration, and RepeatBehavior.

ParallelTimeline()

Initializes a new instance of the ParallelTimeline class.

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

Applies to

ParallelTimeline(Nullable<TimeSpan>)

Initializes a new instance of the ParallelTimeline class with the specified BeginTime.

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

Parameters

beginTime
Nullable<TimeSpan>

The BeginTime for this TimelineGroup.

Applies to

ParallelTimeline(Nullable<TimeSpan>, Duration)

Initializes a new instance of the ParallelTimeline class with the specified BeginTime and Duration.

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

Parameters

beginTime
Nullable<TimeSpan>

The BeginTime for this TimelineGroup.

duration
Duration

The Duration for this TimelineGroup.

Applies to

ParallelTimeline(Nullable<TimeSpan>, Duration, RepeatBehavior)

Initializes a new instance of the ParallelTimeline class with the specified BeginTime, Duration, and RepeatBehavior.

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

Parameters

beginTime
Nullable<TimeSpan>

The BeginTime for this TimelineGroup.

duration
Duration

The Duration for this TimelineGroup.

repeatBehavior
RepeatBehavior

The RepeatBehavior for this TimelineGroup.

Applies to