Class | Tk::Iwidgets::Calendar |
In: |
tk/lib/tkextlib/iwidgets/calendar.rb
|
Parent: | Tk::Itk::Widget |
TkCommandNames | = | ['::iwidgets::calendar'.freeze].freeze |
WidgetClassName | = | 'Calendar'.freeze |
# File tk/lib/tkextlib/iwidgets/calendar.rb, line 65 def __validation_class_list super() << CalendarCommand end
# File tk/lib/tkextlib/iwidgets/calendar.rb, line 89 def get_clicks number(tk_call(@path, 'get', '-clicks')) end
# File tk/lib/tkextlib/iwidgets/calendar.rb, line 84 def get_string tk_call(@path, 'get', '-string') end
# File tk/lib/tkextlib/iwidgets/calendar.rb, line 93 def select(date) tk_call(@path, 'select', date) self end
# File tk/lib/tkextlib/iwidgets/calendar.rb, line 98 def show(date) tk_call(@path, 'show', date) self end