SVGBuilderExtensions.WordSpacing

WordSpacing<TBuilder>(this TBuilder, Spacing)

Sets the ‘word-spacing’ attribute for an SVG element, specifying the spacing behavior between words.

public static TBuilder WordSpacing<TBuilder>(this TBuilder builder, Spacing value)
    where TBuilder : IAttributeSetter, IPresentationAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe builder instance.
valueThe predefined word spacing value.

Return Value

The builder instance for chaining.

See Also


WordSpacing<TBuilder>(this TBuilder, double, LengthType)

Sets the ‘word-spacing’ attribute for an SVG element, specifying the spacing behavior between words with a custom value.

public static TBuilder WordSpacing<TBuilder>(this TBuilder builder, double value, 
    LengthType type = LengthType.Px)
    where TBuilder : IAttributeSetter, IPresentationAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe builder instance.
valueThe word spacing value.
typeThe unit type for the spacing value.

Return Value

The builder instance for chaining.

See Also