class TclTkImage: tcl/tk images
initialize(interp, t, *args):
generating image is done by TclTkImage.new() destroying is done by image delete (inconsistent, sigh) interp: interpreter(TclTkInterpreter) t: image type (photo, bitmap, etc.) *args: command argument
# File tk/lib/tcltk.rb, line 357 def initialize(interp, t, *args) # auto-generate tcl/tk representation exp = TclTk._newname("i_") # initialize TclTkObject super(interp._tcltkip(), exp) # generate image res = @ip._eval_args("image create", t, exp, *args) fail("can't create Image") if res != exp end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.