PropertyAnimation.Delay Property
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.
Gets the amount of time between when the animation is instructed to begin and when that animation actually begins to draw.
public:
property TimeSpan Delay { TimeSpan get(); };
TimeSpan Delay();
public System.TimeSpan Delay { get; }
var timeSpan = propertyAnimation.delay;
Public ReadOnly Property Delay As TimeSpan
Property Value
The amount of time to delay before starting an animation.
Implements
Remarks
This delay is in addition to any StaggerDelay applied to the parent AnimationDescription. For instance, if a transition is scheduled through the application of StaggerDelay and StaggerDelayFactor to begin at time t=200 ms and this delay is set to 250 ms, then the transition will actually begin to animate at 450 ms.