SVGBuilderExtensions.AddSvg

SVGBuilderExtensions.AddSvg<TBuilder> method

Adds an ‘svg’ (scalable vector graphics) element configuration to the builder.

public static TBuilder AddSvg<TBuilder>(this TBuilder builder, 
    Action<SVGSVGElementBuilder> configure)
    where TBuilder : ISVGElementBuilder, IStructuralElementBuilder
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe builder instance.
configureThe configuration action for the ‘svg’ element.

Return Value

The builder instance for chaining.

See Also