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
270
tab close reopen?
posted

If I close a tab on tab control how do i reopen it later

 

utccontractgrid.tabs[1].close;

????????

Parents
No Data
Reply
  • 4618
    Suggested Answer
    posted

    Hi seeker62,

    Closing a tab effectively hides it without actually removing it from the tabs collection of the UltraTabControl; you will be able to cause this closed tab to re-appear by modifying its Visible property to true, as demonstrated in the following sample code.

    //Via the Tabs collection
    ultraTabControl1.Tabs[0].Visible = true;

    //By the discrete TabPage instance
    ultraTabPageControl1.Tab.Visible = true;

    If you have any further questions regarding this behavior, please let me know.

    Sincerely,
    Chris K
    Developer Support Engineer
    Infragistics, Inc.
    www.infragistics.com/support

Children