AnimationTimeline.GetNaturalDurationCore(Clock) Method
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.
Returns the length of a single iteration of this AnimationTimeline.
protected:
override System::Windows::Duration GetNaturalDurationCore(System::Windows::Media::Animation::Clock ^ clock);
protected override System.Windows.Duration GetNaturalDurationCore (System.Windows.Media.Animation.Clock clock);
override this.GetNaturalDurationCore : System.Windows.Media.Animation.Clock -> System.Windows.Duration
Protected Overrides Function GetNaturalDurationCore (clock As Clock) As Duration
Parameters
- clock
- Clock
The clock that was created for this AnimationTimeline.
Returns
The animation's natural duration. This method always returns a Duration of 1 second.
Remarks
This method provides the implementation for GetNaturalDuration and should not be called directly from your code.
Notes to Inheritors
This method should be implemented by classes that need to provide a custom natural Duration when the Duration property is set to Automatic. If the natural duration cannot be determined, this method should return Automatic.