Methods
A
I
N
Included Modules
Class Public methods
at(x,y)
# File ext/tk/lib/tk/text.rb, line 238
def self.at(x,y)
  self.new("@#{x},#{y}")
end
new(str)
# File ext/tk/lib/tk/text.rb, line 242
def self.new(str)
  if str.kind_of?(String)
    super(str)
  elsif str.kind_of?(Symbol)
    super(str.to_s)
  else
    str
  end
end
Instance Public methods
id()
# File ext/tk/lib/tk/text.rb, line 252
def id
  self
end