SVGBuilderExtensions.OnMouseOut

SVGBuilderExtensions.OnMouseOut<TBuilder> method

Sets the ‘onmouseout’ event attribute for handling mouse out events on the element.

public static TBuilder OnMouseOut<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 moves out of the element.

Return Value

The builder instance for chaining.

See Also