ISVGElementBuilder Interface

ISVGElementBuilder interface

Interface for building SVG (Scalable Vector Graphics) elements. This interface defines the essential methods and properties required to construct SVG elements programmatically. It extends the IAttributeSetter interface to include attribute setting capabilities.

public interface ISVGElementBuilder : IAttributeSetter

Properties

NameDescription
Configurations { get; }A list of actions or configurations that are applied to the SVGElement during the build process.

Methods

NameDescription
BuildElement(Document)Builds and returns an SVGElement instance based on the current configuration of the builder.

See Also