SVGBuilderExtensions.MarkerEnd

MarkerEnd(this TBuilder, string)

Sets the ‘marker-end’ attribute for an SVG element, specifying the marker at the end of a path.

public static TBuilder MarkerEnd<TBuilder>(this TBuilder builder, string markerId)
    where TBuilder : IAttributeSetter, IPresentationAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe builder instance.
markerIdThe ID of the marker to use.

Return Value

The builder instance for chaining.

See Also


MarkerEnd(this TBuilder, MarkerPos)

Sets the ‘marker-end’ attribute for an SVG element using a predefined marker position.

public static TBuilder MarkerEnd<TBuilder>(this TBuilder builder, MarkerPos value)
    where TBuilder : IAttributeSetter, IPresentationAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe builder instance.
valueThe marker position value to set.

Return Value

The builder instance for chaining.

See Also