Class: Wx::CalendarHitTestResult

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

Overview

Possible return values from Wx::CalendarCtrl#hit_test.

Requires:

  • USE_CALENDARCTRL

Constant Summary collapse

CAL_HITTEST_NOWHERE =

Hit outside of anything.

Wx::CalendarHitTestResult.new(0)
CAL_HITTEST_HEADER =

Hit on the header (weekdays).

Wx::CalendarHitTestResult.new(1)
CAL_HITTEST_DAY =

Hit on a day in the calendar.

Wx::CalendarHitTestResult.new(2)
CAL_HITTEST_INCMONTH =

Hit on next month arrow (in alternate month selector mode).

Wx::CalendarHitTestResult.new(3)
CAL_HITTEST_DECMONTH =

Hit on previous month arrow (in alternate month selector mode).

Wx::CalendarHitTestResult.new(4)
CAL_HITTEST_SURROUNDING_WEEK =

Hit on surrounding week of previous/next month (if shown).

Wx::CalendarHitTestResult.new(5)
CAL_HITTEST_WEEK =

Hit on week of the year number (if shown).

Wx::CalendarHitTestResult.new(6)