SVGBuilderExtensions.RequiredExtensions

SVGBuilderExtensions.RequiredExtensions<TBuilder> method

Sets the ‘requiredExtensions’ attribute on the SVG element. This attribute specifies which extensions are required for the SVG document fragment to be processed.

public static TBuilder RequiredExtensions<TBuilder>(this TBuilder builder, string value)
    where TBuilder : ISVGElementBuilder, IConditionalProcessingAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe SVG element builder on which the attribute is set.
valueA string value representing the required extensions.

Return Value

The original SVG element builder for method chaining.

See Also