[]
        
(Showing Draft Content)

GrapeCity.Documents.Svg.SvgPolylineElement

Class SvgPolylineElement

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

Represents a 'polyline' element in the DOM.

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

Constructors

SvgPolylineElement()

Initializes a new instance of the SvgPolylineElement class.

public SvgPolylineElement()

Fields

SvgName

Gets the SVG name of SvgPolylineElement.

public const string SvgName = "polyline"

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>