Interface TextInterpretationProperties

  • All Known Implementing Classes:
    FieldElement

    public interface TextInterpretationProperties
    TextInterpretationProperties are implemented by any element which offer text interpretation as HTML, RTF or Markdown.
    • Field Detail

      • PLAIN_TEXT

        static final int PLAIN_TEXT
        Constant for text interpretation. The text will be interpreted as plain text.
        Since:
        6.0
        See Also:
        Constant Field Values
      • RTF_TEXT

        static final int RTF_TEXT
        Constant for text interpretation. The text will be interpreted as RTF formated text. For details of implemented tags and attributs see the designer documentation.
        Since:
        6.0
        See Also:
        Constant Field Values
      • HTML_TEXT

        static final int HTML_TEXT
        Constant for text interpretation. The text will be interpreted as limited HTML formated text. This is faster as RICH_HTML_TEXT but the HTML features are limited For details of implemented tags and attributes see the designer documentation.
        Since:
        6.0
        See Also:
        Constant Field Values
      • ADVANCED_HTML_TEXT

        static final int ADVANCED_HTML_TEXT
        Constant for text interpretation. The text will be interpreted as rich HTML formated text. The rendering result depend of the Java Version because javax.swing.text.html.HTMLDocument is used.
        Since:
        7.1
        See Also:
        Constant Field Values
      • MARKDOWN_COMMONMARK

        static final int MARKDOWN_COMMONMARK
        Constant for text interpretation. The text will be interpreted as Markdown (CommonMark).
        Since:
        23.4
        See Also:
        Constant Field Values
      • MARKDOWN_COWORK

        static final int MARKDOWN_COWORK
        Constant for text interpretation. The text will be interpreted as Markdown (i-net CoWork).
        Since:
        23.4
        See Also:
        Constant Field Values