WrapMode#

class WrapMode#

PangoWrapMode describes how to wrap the lines of a PangoLayout to the desired width.

For PANGO_WRAP_WORD, Pango uses break opportunities that are determined by the Unicode line breaking algorithm. For PANGO_WRAP_CHAR, Pango allows breaking at grapheme boundaries that are determined by the Unicode text segmentation algorithm.

Fields#

class WrapMode
CHAR#

Wrap lines at character boundaries.

NONE#

Do not wrap.

Added in version 1.56.

WORD#

Wrap lines at word boundaries.

WORD_CHAR#

Wrap lines at word boundaries, but fall back to character boundaries if there is not enough space for a full word.