Interface SVGTSpan

All Superinterfaces:
AllowsConditionalProcessingAttributes, AllowsGraphicalEventAttributes, AllowsPresentationAttributes, AllowsStyleAttributes, Element, SVGElement, SVGElementWithChildren
All Known Implementing Classes:
SVGElementAdapter, SVGGenericElement, SVGTSpanImpl

The definition of the SVG <tspan> element.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: SVGTSpan.java 1074 2023-10-02 12:05:06Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.svg.SVGTSpan"

UML Diagram for "org.tquadrat.foundation.svg.SVGTSpan"

UML Diagram for "org.tquadrat.foundation.svg.SVGTSpan"
  • Method Details

    • addCDATA

      Adds a CDATA element to this <tspan> element.
      Parameters:
      text - The text.
      Returns:
      This instance.
    • addText

      Adds text to this <tspan> element. Special characters will be escaped.
      Parameters:
      text - The text.
      Returns:
      This instance.
      Throws:
      IllegalArgumentException - No text allowed for this element.
    • setDx

      void setDx(SVGNumber... values)
      Sets a list of lengths which move the characters relative to the absolute position of the last glyph drawn. The nth length is given to nth character in the text. If there are additional characters after the positions run out, the last length is applied to them.
      Parameters:
      values - The lengths.
    • setDy

      void setDy(SVGNumber... values)
      Sets a list of heights which move the characters relative to the absolute position of the last glyph drawn. The nth height is given to nth character in the text. If there are additional characters after the positions run out, the last height is applied to them.
      Parameters:
      values - The heights.
    • setLengthAdjust

      void setLengthAdjust(boolean flag)
      Sets the way the text length will be adjusted in order to meet the target length set by setTextLength(SVGNumber).
      Parameters:
      flag - true means that both, spacing and glyph size will be adjusted to match, false indicates that only the spacing will be changed.
    • setRotate

      void setRotate(SVGNumber.SVGDegree... values)
      Sets a list of rotations for the glyphs. The nth rotation is given to nth character in the text. Additional characters are not given the last rotation (although some browsers may handle that differently).
      Parameters:
      values - The rotations.
    • setTextLength

      void setTextLength(SVGNumber value)
      Sets the target length for the text that an SVG viewer will attempt to display the text between by adjusting the spacing and/or the glyphs.
      Parameters:
      value - The intended text length.
    • setX

      void setX(SVGNumber... values)
      Sets a list of x-axis position. The nth x-axis position is given to nth character in the text. If there are additional characters after the positions run out, they are placed after the last character.
      Parameters:
      values - The x-axis positions.
    • setY

      void setY(SVGNumber... values)
      Sets a list of y-axis position. The nth y-axis position is given to nth character in the text. If there are additional characters after the positions run out, they are placed after the last character.
      Parameters:
      values - The y-axis positions.