SVGBuilderExtensions.OnMouseUp

SVGBuilderExtensions.OnMouseUp<TBuilder> method

Sets the ‘onmouseup’ event attribute for handling mouse up events on the element.

public static TBuilder OnMouseUp<TBuilder>(this TBuilder builder, string value)
    where TBuilder : ISVGElementBuilder, IGlobalEventAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe SVG element builder.
valueThe JavaScript function or script to execute when a mouse button is released over the element.

Return Value

The builder instance for chaining.

See Also