Class: TclTkCommand
- Inherits:
-
TclTkObject
- Object
- TclTkObject
- TclTkCommand
- Defined in:
- lib/tcltk.rb
Overview
class TclTkCommand: tcl/tk commands you should not call TclTkCommand.new() commands are created by TclTkInterpreter:initialize()
Direct Known Subclasses
Instance Method Summary collapse
-
#e(*args) ⇒ Object
e(*args): execute command.
Methods inherited from TclTkObject
Constructor Details
This class inherits a constructor from TclTkObject
Instance Method Details
#e(*args) ⇒ Object
e(*args): execute command. returns String (e is for exec or eval)
*args: command arguments
207 208 209 |
# File 'lib/tcltk.rb', line 207 def e(*args) return @ip._eval_args(to_s(), *args) end |