SVGBuilderExtensions.OnDblClick

SVGBuilderExtensions.OnDblClick<TBuilder> method

Sets the ‘ondblclick’ event attribute for handling double-click events on the element.

public static TBuilder OnDblClick<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 on double-click events.

Return Value

The builder instance for chaining.

See Also