| Class | Tk::BWidget::ProgressDlg |
| In: |
tk/lib/tkextlib/bwidget/progressdlg.rb
|
| Parent: | Tk::BWidget::MessageDlg |
| TkCommandNames | = | ['ProgressDlg'.freeze].freeze |
| WidgetClassName | = | 'ProgressDlg'.freeze |
# File tk/lib/tkextlib/bwidget/progressdlg.rb, line 24 def create_self(keys) # NOT create widget for reusing the object super(keys) @keys['textvariable'] = TkVariable.new unless @keys.key?('textvariable') @keys['variable'] = TkVariable.new unless @keys.key?('variable') end
# File tk/lib/tkextlib/bwidget/progressdlg.rb, line 39 def text= (txt) @keys['textvariable'].value = txt end
# File tk/lib/tkextlib/bwidget/progressdlg.rb, line 51 def value= (val) @keys['variable'].value = val end
ruby-doc.org is a community service provided by Happy Camper Studios, a Phoenix, Arizona, Ruby application development company.
Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.
For more information on the Ruby programming language, visit ruby-lang.org.
Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.