SVGCircleElementBuilder Class
SVGCircleElementBuilder class
Builder class for constructing an SVG ‘circle’ element, which is used to draw circles within SVG graphics. It enables the building of content within the ‘circle’ element and provides methods to set various attributes specific to the ‘circle’ element in SVG.
public class SVGCircleElementBuilder : SVGElementBuilder<SVGCircleElement>,
IAnimationElementBuilder, IDescriptiveElementBuilder, IPaintServerElementBuilder,
IShapeAttributeSetter, IShapeContentElementBuilder
Constructors
Properties
Methods
Name | Description |
---|
Attribute(string, string) | |
virtual Build(Document) | |
virtual Build(SVGCircleElement) | |
BuildElement(Document) | |
Cx(double, LengthType) | Sets the ‘cx’ attribute of the SVG ‘circle’ element, specifying the x-coordinate of the center of the circle. |
Cy(double, LengthType) | Sets the ‘cy’ attribute of the SVG ‘circle’ element, specifying the y-coordinate of the center of the circle. |
R(double, LengthType) | Sets the ‘r’ attribute of the SVG ‘circle’ element, specifying the radius of the circle. |
See Also