SVGBuilderExtensions.RefY

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

Sets the ‘refY’ attribute for an SVG element.

public static TBuilder RefY<TBuilder>(this TBuilder builder, double value, 
    LengthType type = LengthType.Px)
    where TBuilder : ISVGElementBuilder, IRefCoordinatesAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe builder instance.
valueThe reference Y coordinate.
typeThe type of length unit (default is pixels).

Return Value

The builder instance for chaining.

See Also


RefY<TBuilder>(this TBuilder, VerticalPosition)

Sets the ‘refY’ attribute for an SVG element using a predefined vertical position.

public static TBuilder RefY<TBuilder>(this TBuilder builder, VerticalPosition value)
    where TBuilder : ISVGElementBuilder, IRefCoordinatesAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe builder instance.
valueThe predefined vertical position.

Return Value

The builder instance for chaining.

See Also