Class: Wx::EllipsizeMode

Inherits:
Enum
  • Object
show all
Defined in:
lib/wx/doc/gen/gdi_common.rb

Overview

The different ellipsization modes supported by the Control.ellipsize and Wx::RendererNative#draw_item_text functions.

Constant Summary collapse

ELLIPSIZE_NONE =

Don't ellipsize the text at all.

Wx::EllipsizeMode.new(0)
ELLIPSIZE_START =

Put the ellipsis at the start of the string, if the string needs ellipsization.

Wx::EllipsizeMode.new(1)
ELLIPSIZE_MIDDLE =

Put the ellipsis in the middle of the string, if the string needs ellipsization.

Wx::EllipsizeMode.new(2)
ELLIPSIZE_END =

Put the ellipsis at the end of the string, if the string needs ellipsization.

Wx::EllipsizeMode.new(3)