ruby-****@sourc*****
ruby-****@sourc*****
2003年 11月 18日 (火) 07:49:48 JST
------------------------- REMOTE_ADDR = 62.245.109.173 REMOTE_HOST = URL = http://ruby-gnome2.sourceforge.jp/?Gtk%3A%3AVBox ------------------------- = class Gtk::VBox Gtk::VBox is a container that organizes child widgets into a single column. Use the Gtk::Box packing interface to determine the arrangement, spacing, height, and alignment of Gtk::VBox children. All children are allocated the same width. == Object Hierarchy * Object * GLib::Instantiatable * GLib::Object * Gtk::Object * Gtk::Widget * Gtk::Container * Gtk::Box * Gtk::VBox == Class Methods --- Gtk::VBox.new(homogeneous = false, spacing = nil) Creates a new Gtk::VBox. * homogeneous: true if all children are to be given equal space allotments. * spacing: the number of pixels to place by default between children. * Returns: a new Gtk::VBox. == See Also - Gtk::HBox a sister class that organizes widgets into a column. + Gtk::HBox a sister class that organizes widgets into a row. - ((<Masao>))