ParallelTimeline Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
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
The BeginTime for this TimelineGroup.
- duration
- Duration
The Duration for this TimelineGroup.
- repeatBehavior
- RepeatBehavior
The RepeatBehavior for this TimelineGroup.