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)

Method Summary

Methods inherited from Enum

#!, #&, #<=>, #allbits?, #anybits?, #coerce, #eql?, #initialize, #inspect, #integer?, #method_missing, #nobits?, #real?, #succ, #to_int, #to_s, #|, #~

Constructor Details

This class inherits a constructor from Wx::Enum

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Wx::Enum