Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
690
Remove Group bu Code
posted
HI all, Please suggest, How can i remove group by code.. please suggest some code..
  • 19380
    posted

    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