GenericWindow.SelectRowWithID C# (CSharp) Method

SelectRowWithID() public method

public SelectRowWithID ( int colNum, int id ) : void
colNum int
id int
return void
    public void SelectRowWithID(int colNum, int id)
    {
        if(id <= 0)
            return;

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