Class: TextItem (Ruby 2.3.4)

In Files

  • tk/lib/tk/canvas.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

TextItem

Constants

CItemTypeName

Public Class Methods

create(canvas, *args)
 
               # File tk/lib/tk/canvas.rb, line 823
def self.create(canvas, *args)
  if args[-1].kind_of?(Hash)
    keys = _symbolkey2str(args.pop)
    txt = keys['text']
    keys['text'] = _get_eval_enc_str(txt) if txt
    args.push(keys)
  end
  super(canvas, *args)
end