Class | Tk::Iwidgets::Messagebox |
In: |
tk/lib/tkextlib/iwidgets/messagebox.rb
|
Parent: | Tk::Iwidgets::Scrolledwidget |
TkCommandNames | = | ['::iwidgets::messagebox'.freeze].freeze |
WidgetClassName | = | 'Messagebox'.freeze |
itemcget | -> | typecget |
itemconfigure | -> | typeconfigure |
itemconfiginfo | -> | typeconfiginfo |
current_itemconfiginfo | -> | current_typeconfiginfo |
# File tk/lib/tkextlib/iwidgets/messagebox.rb, line 81 def export(file) tk_call(@path, 'export', file) self end
# File tk/lib/tkextlib/iwidgets/messagebox.rb, line 86 def issue(string, type=None, *args) tk_call(@path, 'issue', string, tagid(type), *args) self end
# File tk/lib/tkextlib/iwidgets/messagebox.rb, line 35 def tagid(tagOrId) if tagOrId.kind_of?(Tk::Itk::Component) tagOrId.name else #_get_eval_string(tagOrId) tagOrId end end