module Tk::Vu::PieSliceConfigMethod

Private Instance Methods

__item_pathname(tagOrId) click to toggle source
# File lib/tkextlib/vu/pie.rb, line 27
def __item_pathname(tagOrId)
  if tagOrId.kind_of?(Tk::Vu::PieSlice)
    self.path + ';' + tagOrId.id.to_s
  else
    self.path + ';' + tagOrId.to_s
  end
end