SVGBuilderExtensions.AddFeMerge

SVGBuilderExtensions.AddFeMerge<TBuilder> method

Adds an ‘feMerge’ element configuration to the builder. This element allows filter effects to be applied concurrently instead of sequentially.

public static TBuilder AddFeMerge<TBuilder>(this TBuilder builder, 
    Action<SVGFEMergeElementBuilder> configure)
    where TBuilder : ISVGElementBuilder, IFilterPrimitiveElementBuilder
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe builder instance.
configureThe configuration action for the ‘feMerge’ element.

Return Value

The builder instance for chaining.

See Also