Method: TkTextFrame#textbackground

Defined in:
sample/tktextframe.rb

#textbackground(color = nil) ⇒ Object

set background color of text widget



69
70
71
72
73
74
75
# File 'sample/tktextframe.rb', line 69

def textbackground(color = nil)
  if color
    @text.background(color)
  else
    @text.background
  end
end