SVGBuilderExtensions.OnMouseLeave

SVGBuilderExtensions.OnMouseLeave<TBuilder> method

Sets the ‘onmouseleave’ event attribute for handling mouse leave events on the element.

public static TBuilder OnMouseLeave<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 the mouse pointer leaves the element.

Return Value

The builder instance for chaining.

See Also