| AnimatablePropertyTValue Property |
Gets or sets the value of the property.
Namespace: DigitalRune.AnimationAssembly: DigitalRune.Animation (in DigitalRune.Animation.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax public T Value { get; set; }
Public Property Value As T
Get
Set
public:
property T Value {
T get ();
void set (T value);
}
member Value : 'T with get, set
Property Value
Type:
TThe value of the property.
Remarks
Writing Value changes the base value of the property. Reading
Value returns the effective value of the property. (If the property is
animated, then the animation value is effective value. If no animations are active, then the
base value is the effective value.)
See Also