SVGBuilderExtensions.MarkerMid

MarkerMid<TBuilder>(this TBuilder, string)

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

public static TBuilder MarkerMid<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


MarkerMid<TBuilder>(this TBuilder, MarkerPos)

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

public static TBuilder MarkerMid<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