[]
Represents a text element with attributes that position individual text glyphs.
public abstract class SvgTextPositioningElement : SvgTextContentElement
Initializes a new instance of the SvgTextPositioningElement class.
protected SvgTextPositioningElement(SvgElementType elementType)
elementType
SvgElementTypeGets or sets the list of relative X coordinates.
public List<SvgLength> DX { get; set; }
Gets or sets the list of relative Y coordinates.
public List<SvgLength> DY { get; set; }
Gets or sets the list of supplemental rotation values, in degrees.
public List<float> Rotate { get; set; }
Gets or sets the list of absolute X coordinates.
public List<SvgLength> X { get; set; }
Gets or sets the list of absolute Y coordinates.
public List<SvgLength> Y { get; set; }