From 36b31af926dbabd8f67a154d281a7940b5084411 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Sun, 11 Apr 2004 22:45:22 +0000 Subject: [PATCH] Contributions from Todd Berman svn path=/trunk/gtk-sharp/; revision=25336 --- doc/en/Gtk/TreeView.xml | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/doc/en/Gtk/TreeView.xml b/doc/en/Gtk/TreeView.xml index 78822655a..0762213dc 100644 --- a/doc/en/Gtk/TreeView.xml +++ b/doc/en/Gtk/TreeView.xml @@ -1182,12 +1182,23 @@ public class TreeViewDemo { - To be added - a - a - a - a - To be added + Adds a with a specific column title and attributes. + column title + cell renderer + attributes + The appended + + This function is used to append a new subclass with specific attributes to the . + +The following code sample will append a new to an existing and use column 0 from the as the text to render. + + + +CellRendererText text = new CellRendererText (); +tree_view.AppendColumn ("title", text, "text", 0); + + + @@ -1241,9 +1252,10 @@ public class TreeViewDemo { - To be added - a - To be added + Expands the treeview so the Path specified is visible. + + to expand to. +