SVGBuilderExtensions.MarkerStart

MarkerStart(this TBuilder, string)

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

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


MarkerStart(this TBuilder, MarkerPos)

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

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