SVGBuilderExtensions.OnMouseMove

SVGBuilderExtensions.OnMouseMove<TBuilder> method

Sets the ‘onmousemove’ event attribute for handling mouse move events on the element.

public static TBuilder OnMouseMove<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 within the element.

Return Value

The builder instance for chaining.

See Also