SVGBuilderExtensions.AddMetadata

SVGBuilderExtensions.AddMetadata<TBuilder,TElement> method

Adds a ‘metadata’ element configuration to the builder. The ‘metadata’ element is used to add metadata to SVG content.

public static TBuilder AddMetadata<TBuilder, TElement>(this TBuilder builder, 
    Action<SVGMetadataElementBuilder> configure)
    where TBuilder : ISVGElementBuilder, IDescriptiveElementBuilder
ParameterDescription
TBuilderThe type of the SVG element builder.
TElementThe type representing the ‘metadata’ element in the SVG model.
builderThe builder instance.
configureThe configuration action for the ‘metadata’ element.

Return Value

The builder instance for chaining.

See Also