SVGBuilderExtensions.Min

Min<TBuilder>(this TBuilder, TimeSpan)

Sets the ‘min’ attribute, specifying the minimum duration of the animation.

public static TBuilder Min<TBuilder>(this TBuilder builder, TimeSpan duration)
    where TBuilder : ISVGElementBuilder, IAnimationTimingAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe SVG element builder.
durationThe minimum duration of the animation.

Return Value

The builder instance for chaining.

See Also


Min<TBuilder>(this TBuilder, Media)

Sets the ‘min’ attribute, specifying the minimum duration condition for the animation based on media.

public static TBuilder Min<TBuilder>(this TBuilder builder, Media value)
    where TBuilder : ISVGElementBuilder, IAnimationTimingAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe SVG element builder.
valueThe media-related minimum duration condition for the animation.

Return Value

The builder instance for chaining.

See Also