ruby-****@sourc*****
ruby-****@sourc*****
2004年 4月 3日 (土) 06:08:06 JST
------------------------- REMOTE_ADDR = 200.216.151.125 REMOTE_HOST = URL = http://ruby-gnome2.sourceforge.jp/en/?tut-treeview-model-manipulate ------------------------- + {{link "tut-treeview-model-add", "tut-treeview-model", "tut-treeview", "tut-treeview-model-retrieve"}} = Manipulating Row Data Adding empty rows to a data store is not terribly exciting, so let's see how we can add or change data in the store. This is typically done with Gtk::TreeIter#[column]=. Here is an example where we create a store that stores two strings and one integer for each row: # Create a store for first name, last name, and year born liststore = Gtk::ListStore.new(String, String, Integer) # Append an empty row to the list store. iter = liststore.append # Fill fields with some data iter[0] = "Joe" iter[1] = "Average" iter[2] = 1970