Method: Tk::Iwidgets::Scrolledlistbox#sort

Defined in:
lib/tkextlib/iwidgets/scrolledlistbox.rb

#sort(*params, &b) ⇒ Object



73
74
75
76
77
78
79
80
81
# File 'lib/tkextlib/iwidgets/scrolledlistbox.rb', line 73

def sort(*params, &b)
  # see 'lsort' man page about params
  if b
    tk_call(@path, 'sort', '-command', proc(&b), *params)
  else
    tk_call(@path, 'sort', *params)
  end
  self
end