[]
Represents a 'textPath' element.
public class SvgTextPathElement : SvgTextContentElement
Initializes a new instance of the SvgTextPathElement class.
public SvgTextPathElement()
Gets the SVG name of SvgTextPathElement.
public const string SvgName = "textPath"
Gets the SVG name of the current element.
public override string ElementName { get; }
Gets or sets a reference to the SvgGeometryElement onto which the glyphs will be rendered, if no Path is provided.
public SvgReference Href { get; set; }
Gets or sets the method by which text should be rendered along the path.
public SvgTextPathMethod? Method { get; set; }
Gets or sets the path onto which the typographic characters will be rendered.
public SvgPathData Path { get; set; }
Gets or sets a value specifying the side of the path the text is placed on (relative to the path direction).
public SvgTextPathSide? Side { get; set; }
Gets or sets a value indicating how the user agent should determine the spacing between typographic characters that are to be rendered along a path.
public SvgTextPathSpacing? Spacing { get; set; }
Gets or sets an offset from the start of the path for the initial current text position.
public SvgLength? StartOffset { get; set; }