[]
        
(Showing Draft Content)

GrapeCity.Documents.Svg.SvgPolygonElement

Class SvgPolygonElement

Namespace
GrapeCity.Documents.Svg
Assembly
GcDocs.Imaging.dll

Represents a 'polygon' element in the DOM.

public class SvgPolygonElement : SvgGeometryElement
Inheritance
object
SvgPolygonElement
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Constructors

SvgPolygonElement()

Initializes a new instance of the SvgPolygonElement class.

public SvgPolygonElement()

Fields

SvgName

Gets the SVG name of SvgPolygonElement.

public const string SvgName = "polygon"

Field Value

string

Properties

ElementName

Gets the SVG name of the current element.

public override string ElementName { get; }

Property Value

string

Points

Gets or sets the list of points.

public List<SvgPoint> Points { get; set; }

Property Value

System.Collections.Generic.List<T><SvgPoint>