Method: TkMultiColumnList#scrollbarwidth

Defined in:
sample/tkmulticolumnlist.rb

#scrollbarwidth(width) ⇒ Object

set scrollbar width



347
348
349
350
351
352
353
# File 'sample/tkmulticolumnlist.rb', line 347

def scrollbarwidth(width)
  @scrbar_width = width
  @v_scroll['width'] = @scrbar_width
  @h_scroll['width'] = @scrbar_width
  @hscr_list.each{|hscr| hscr['width'] = @scrbar_width}
  self
end