Defines SVG basic shapes (rectangle, circle, ellipse, etc)
|
Name
|
Description
|
|
TSVGCircle
|
Represents a SVG 'circle' element. The ‘circle’ element defines a circle based on a center point and a radius.
|
|
TSVGEllipse
|
Represents a SVG 'ellipse' element. The ‘ellipse’ element defines an ellipse which is axis-aligned with the current user coordinate system based on a center point and two radii.
|
|
TSVGLine
|
Represents a SVG 'line' element. The ‘line’ element defines a line segment that starts at one point and ends at another.
|
|
TSVGPolygon
|
Represents a SVG 'polygon' element. The ‘polygon’ element defines a closed shape consisting of a set of connected straight line segments.
|
|
TSVGPolyline
|
Represents a SVG 'polyline' element. The ‘polyline’ element defines a set of connected straight line segments. Typically, ‘ polyline’ elements define open shapes.
|
|
TSVGRectangle
|
Represents a SVG 'rect' element. The ‘rect’ element defines a rectangle which is axis-aligned with the current user coordinate system. Rounded rectangles can be achieved by setting appropriate values for attributes ‘rx’ and ‘ry’.
|
Top
|