Class: Shul::Window::Radiogroup

Inherits:
Object
  • Object
show all
Defined in:
lib/shul.rb

Instance Method Summary collapse

Constructor Details

#initialize(e) ⇒ Radiogroup

Returns a new instance of Radiogroup.



426
427
428
# File 'lib/shul.rb', line 426

def initialize(e)
  @e = e
end

Instance Method Details

#clearObject



430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
# File 'lib/shul.rb', line 430

def clear()


  @e.elements.each do |x| 

    x.obj.contents.clear_all

    #x.obj.clear

    x.obj = nil
    x.delete
    x = nil
  end


end