SVGBuilderExtensions.AddTitle

SVGBuilderExtensions.AddTitle<TBuilder> method

Adds a ’title’ element configuration to the builder. The ’title’ element is used to provide a title for SVG content.

public static TBuilder AddTitle<TBuilder>(this TBuilder builder, 
    Action<SVGTitleElementBuilder> configure)
    where TBuilder : ISVGElementBuilder, IDescriptiveElementBuilder
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe builder instance.
configureThe configuration action for the ’title’ element.

Return Value

The builder instance for chaining.

See Also