class Interphase::VBox

A vertical item container.

Public Class Methods

new(**options, &block) click to toggle source

Creates a new vertical box.

Calls superclass method Interphase::Widget::new
# File lib/interphase/widgets/box.rb, line 36
def initialize(**options, &block)
  super(Gtk::VBox.new, options, &block)
end