Hi Kartikeya,
you can hide a group like this:
this.ultraExplorerBar1.Groups[0].Visible = false;
Are you trying to permanently remove the group from the collection?
this.ultraExplorerBar1.Groups.RemoveAt(0);
Let me know if this helps.
Thanks
Jason