SVGBuilderExtensions.SystemLanguage

SVGBuilderExtensions.SystemLanguage<TBuilder> method

Sets the ‘systemLanguage’ attribute on the SVG element. This attribute specifies the language preferences for which the SVG document fragment is intended.

public static TBuilder SystemLanguage<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 language preferences, typically in the form of language tags.

Return Value

The original SVG element builder for method chaining.

See Also