[]
        
(Showing Draft Content)

GrapeCity.Documents.Svg.SvgLineElement

Class SvgLineElement

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

Corresponds to the 'line' element in the DOM.

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

Constructors

SvgLineElement()

Initializes a new instance of the SvgLineElement class.

public SvgLineElement()

Fields

SvgName

Gets the SVG name of SvgLineElement.

public const string SvgName = "line"

Field Value

string

Properties

ElementName

Gets the SVG name of the current element.

public override string ElementName { get; }

Property Value

string

X1

Gets or sets the horizontal coordinate of the first point.

public SvgLength? X1 { get; set; }

Property Value

SvgLength?

X2

Gets or sets the horizontal coordinate of the second point.

public SvgLength? X2 { get; set; }

Property Value

SvgLength?

Y1

Gets or sets the vertical coordinate of the first point.

public SvgLength? Y1 { get; set; }

Property Value

SvgLength?

Y2

Gets or sets the vertical coordinate of the second point.

public SvgLength? Y2 { get; set; }

Property Value

SvgLength?