Methods
E
I
M
S
T
Included Modules
Constants
TkCommandNames = ['::blt::stripchart'.freeze].freeze
 
WidgetClassName = 'Stripchart'.freeze
 
Instance Public methods
extents(item)

BarElement_ID = ['blt_stripchart_bar'.freeze, TkUtil.untrust('00000')].freeze

def bar(elem=nil, keys={})

if elem.kind_of?(Hash)
  keys = elem
  elem = nil
end
unless elem
  elem = BarElement_ID.join(TkCore::INTERP._ip_id_).freeze
  BarElement_ID[1].succ!
end
tk_send('bar', elem, keys)
Element.new(self, elem, :without_creating=>true)

end

# File ext/tk/lib/tkextlib/blt/stripchart.rb, line 47
def extents(item)
  num_or_str(tk_send_without_enc('extents', item))
end
inside(x, y)
# File ext/tk/lib/tkextlib/blt/stripchart.rb, line 55
def inside(x, y)
  bool(tk_send_without_enc('inside', x, y))
end
invtransform(x, y)
# File ext/tk/lib/tkextlib/blt/stripchart.rb, line 51
def invtransform(x, y)
  list(tk_send_without_enc('invtransform', x, y))
end
metafile(file=None)
# File ext/tk/lib/tkextlib/blt/stripchart.rb, line 59
def metafile(file=None)
  # Windows only
  tk_send('metafile', file)
  self
end
snap(output, keys={})
# File ext/tk/lib/tkextlib/blt/stripchart.rb, line 65
def snap(output, keys={})
  tk_send_without_enc('snap', *(hash_kv(keys, false) + output))
  self
end
transform(x, y)
# File ext/tk/lib/tkextlib/blt/stripchart.rb, line 70
def transform(x, y)
  list(tk_send_without_enc('transform', x, y))
end