SVGBuilderExtensions.FontSizeAdjust

FontSizeAdjust<TBuilder>(this TBuilder, double)

Sets the ‘font-size-adjust’ attribute for an SVG element.

public static TBuilder FontSizeAdjust<TBuilder>(this TBuilder builder, double value)
    where TBuilder : IAttributeSetter, IPresentationAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe builder instance.
valueThe font size adjust value to set.

Return Value

The builder instance for chaining.

See Also


FontSizeAdjust<TBuilder>(this TBuilder, AdjustSize)

Sets the ‘font-size-adjust’ attribute for an SVG element using a predefined adjust size value.

public static TBuilder FontSizeAdjust<TBuilder>(this TBuilder builder, AdjustSize value)
    where TBuilder : IAttributeSetter, IPresentationAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe builder instance.
valueThe predefined adjust size value to set.

Return Value

The builder instance for chaining.

See Also