Package: pango

Enum pango-wrap-mode

Details

A pango-wrap-mode enumeration describes how to wrap the lines of a pango-layout to the desired width.
(define-g-enum "PangoWrapMode" pango-wrap-mode
  (:export t
   :type-initializer "pango_wrap_mode_get_type")
  (:word 0)
  (:char 1)
  (:word-char 2))  
:word
Wrap lines at word boundaries.
:char
Wrap lines at character boundaries.
:word-char
Wrap lines at word boundaries, but fall back to character boundaries if there is not enough space for a full word.
 

See also

2021-1-5