How to clear all loaded TabPageAdv collection in WinForms TabControlAdv?
Clear the loaded tab page collection
The Collection of loaded TabPageAdv can be removed from TabControlAdv by clearing the controls from TabControlAdv. The following code illustrates the same,
C#:
tabControlAdv1.Controls.Clear();
VB:
tabControlAdv1.Controls.Clear()
Samples: