Interface WrapMode


public interface WrapMode
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    wrap text, breaking lines anywhere the cursor can
    appear (between characters, usually - if you want to be technical,
    between graphemes, see pango_get_log_attrs())
    static final int
    do not wrap lines; just make the text area wider
    static final int
    wrap text, breaking lines in between words
    static final int
    wrap text, breaking lines in between words, or if
    that is not enough, also between graphemes
  • Field Details

    • NONE

      static final int NONE
      do not wrap lines; just make the text area wider
      See Also:
    • CHAR

      static final int CHAR
      wrap text, breaking lines anywhere the cursor can
      appear (between characters, usually - if you want to be technical,
      between graphemes, see pango_get_log_attrs())
      See Also:
    • WORD

      static final int WORD
      wrap text, breaking lines in between words
      See Also:
    • WORD_CHAR

      static final int WORD_CHAR
      wrap text, breaking lines in between words, or if
      that is not enough, also between graphemes
      See Also: