public void ExpandToNode()
 {
     Gtk.TreeIter it;
     AssertIsValid();
     if (store.IterParent(out it, currentIter))
     {
         Gtk.TreePath path = store.GetPath(it);
         tree.ExpandToPath(path);
     }
 }