SVGBuilderExtensions.XlinkTitle

SVGBuilderExtensions.XlinkTitle<TBuilder> method

Sets the ‘xlink:title’ attribute for an SVG element. This attribute provides a title for the linked resource.

public static TBuilder XlinkTitle<TBuilder>(this TBuilder builder, string value)
    where TBuilder : ISVGElementBuilder, IXLinkAttributeSetter
ParameterDescription
TBuilderThe type of the SVG element builder.
builderThe builder instance.
valueThe title of the linked resource.

Return Value

The builder instance for chaining.

See Also