SVGBuilderExtensions.OnMouseOver

SVGBuilderExtensions.OnMouseOver<TBuilder> method

Sets the ‘onmouseover’ event attribute for handling mouse over events on the element.

public static TBuilder OnMouseOver<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 is over the element.

Return Value

The builder instance for chaining.

See Also