Method: Fox::FXWindow#visible=

Defined in:
lib/fox16/core.rb

#visible=(vis) ⇒ Object

Setting visible to true calls #show, setting it to false calls #hide.



352
353
354
355
356
357
358
# File 'lib/fox16/core.rb', line 352

def visible=(vis)
  if vis
    show
  else
    hide
  end
end