TreeviewSelectRowWithID() public static method

public static TreeviewSelectRowWithID ( Gtk tv, Gtk store, int colNum, int id, bool scrollToRow ) : bool
tv Gtk
store Gtk
colNum int
id int
scrollToRow bool
return bool
    public void SelectRowWithID(int colNum, int id)
    {
        if (id <= 0)
        {
            return;
        }

        UtilGtk.TreeviewSelectRowWithID(treeview, store, colNum, id, true);         //last boolean is 'scroll to row'
    }