TimelineGroup 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 TimelineGroup class.
Overloads
TimelineGroup() |
Initializes a new instance of the TimelineGroup class, with default properties. |
TimelineGroup(Nullable<TimeSpan>) |
Initializes a new instance of the TimelineGroup class with the specified BeginTime. |
TimelineGroup(Nullable<TimeSpan>, Duration) |
Initializes a new instance of the TimelineGroup class with the specified BeginTime and Duration. |
TimelineGroup(Nullable<TimeSpan>, Duration, RepeatBehavior) |
Initializes a new instance of the TimelineGroup class with the specified BeginTime, Duration, and RepeatBehavior. |
TimelineGroup()
Initializes a new instance of the TimelineGroup class, with default properties.
protected:
TimelineGroup();
protected TimelineGroup ();
Protected Sub New ()
Applies to
TimelineGroup(Nullable<TimeSpan>)
Initializes a new instance of the TimelineGroup class with the specified BeginTime.
protected:
TimelineGroup(Nullable<TimeSpan> beginTime);
protected TimelineGroup (TimeSpan? beginTime);
new System.Windows.Media.Animation.TimelineGroup : Nullable<TimeSpan> -> System.Windows.Media.Animation.TimelineGroup
Protected Sub New (beginTime As Nullable(Of TimeSpan))
Parameters
The BeginTime for this TimelineGroup.
Applies to
TimelineGroup(Nullable<TimeSpan>, Duration)
Initializes a new instance of the TimelineGroup class with the specified BeginTime and Duration.
protected:
TimelineGroup(Nullable<TimeSpan> beginTime, System::Windows::Duration duration);
protected TimelineGroup (TimeSpan? beginTime, System.Windows.Duration duration);
new System.Windows.Media.Animation.TimelineGroup : Nullable<TimeSpan> * System.Windows.Duration -> System.Windows.Media.Animation.TimelineGroup
Protected 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
TimelineGroup(Nullable<TimeSpan>, Duration, RepeatBehavior)
Initializes a new instance of the TimelineGroup class with the specified BeginTime, Duration, and RepeatBehavior.
protected:
TimelineGroup(Nullable<TimeSpan> beginTime, System::Windows::Duration duration, System::Windows::Media::Animation::RepeatBehavior repeatBehavior);
protected TimelineGroup (TimeSpan? beginTime, System.Windows.Duration duration, System.Windows.Media.Animation.RepeatBehavior repeatBehavior);
new System.Windows.Media.Animation.TimelineGroup : Nullable<TimeSpan> * System.Windows.Duration * System.Windows.Media.Animation.RepeatBehavior -> System.Windows.Media.Animation.TimelineGroup
Protected 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.