SVGBuilderExtensions.RepeatCount
Contents
[
Hide
]RepeatCount(this TBuilder, int) 
Sets the ‘repeatCount’ attribute, defining how many times the animation should repeat.
public static TBuilder RepeatCount<TBuilder>(this TBuilder builder, int value)
    where TBuilder : ISVGElementBuilder, IAnimationTimingAttributeSetter
| Parameter | Description | 
|---|---|
| TBuilder | The type of the SVG element builder. | 
| builder | The SVG element builder. | 
| value | The number of times the animation should repeat. | 
Return Value
The builder instance for chaining.
See Also
- interface ISVGElementBuilder
 - interface IAnimationTimingAttributeSetter
 - class SVGBuilderExtensions
 - namespace Aspose.Svg.Builder
 - assembly Aspose.SVG
 
RepeatCount(this TBuilder, IndefiniteRepeat) 
Sets the ‘repeatCount’ attribute, defining an indefinite repeat count for the animation using a predefined enum.
public static TBuilder RepeatCount<TBuilder>(this TBuilder builder, IndefiniteRepeat value)
    where TBuilder : ISVGElementBuilder, IAnimationTimingAttributeSetter
| Parameter | Description | 
|---|---|
| TBuilder | The type of the SVG element builder. | 
| builder | The SVG element builder. | 
| value | The predefined indefinite repeat count for the animation. | 
Return Value
The builder instance for chaining.
See Also
- enum IndefiniteRepeat
 - interface ISVGElementBuilder
 - interface IAnimationTimingAttributeSetter
 - class SVGBuilderExtensions
 - namespace Aspose.Svg.Builder
 - assembly Aspose.SVG