Property Accumulate
- Namespace
- SharpVectors.Dom.Svg
- Assembly
- SharpVectors.Model.dll
Accumulate
Gets or sets a value that controls whether or not the animation is cumulative.
public string Accumulate { get; set; }
Property Value
- string
Possible value are none | sum, default is none.
- sum Specifies that each repeat iteration after the first builds upon the last value of the previous iteration.
- none Specifies that repeat iterations are not cumulative. This is the default.
Remarks
This attribute is ignored if the target attribute value does not support addition, or if the animation element does not repeat.
Cumulative animation is not defined for "to animation".
This attribute will be ignored if the animation function is specified with only the "to" attribute.