Version

Close Method

Closes the tab and associated Mdi child form.
Overload List
OverloadDescription
CloseCloses the tab and associated Mdi child form.  
Example
The following code demonstrates how to close a tab through code.

Imports Infragistics.Win
Imports Infragistics.Win.UltraWinTabs

' Close the first tab in the tab control. This will set the tab's Visible property to False.
Me.UltraTabbedMdiManager1.TabGroups(0).Tabs(0).Close()
using System.Windows.Forms;
using Infragistics.Win;
using Infragistics.Win.UltraWinTabs;

// Close the first tab in the tab control. This will set the tab's Visible property to False.
this.ultraTabbedMdiManager1.TabGroups[ 0 ].Tabs[ 0 ].Close();
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also