 | AnimationClip<T>.ClipEnd Property |
Gets or sets the end time of the animation clip.
Namespace: DigitalRune.AnimationAssembly: DigitalRune.Animation (in DigitalRune.Animation.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntaxpublic Nullable<TimeSpan> ClipEnd { get; set; }
Public Property ClipEnd As Nullable(Of TimeSpan)
Get
Set
public:
property Nullable<TimeSpan> ClipEnd {
Nullable<TimeSpan> get ();
void set (Nullable<TimeSpan> value);
}
member ClipEnd : Nullable<TimeSpan> with get, set
Property Value
Type:
Nullable<TimeSpan>
The time at which the original animation should be stopped. The default value is
null, which indicates that the original animation should be played until
it ends.
RemarksClipStart and
ClipEnd define the interval of the original
animation that should be played.
See Also