Category / Section
How to word wrap the text in the tab headers in WinForms TabControlAdv?
Word wrap the text in tab header
We can wrap the header text of TabItem to next line in TabControlAdv. It can be achieved by enable the MultilineText property of TabControlAdv. The following code demonstrates the same.
C#
//To enable multiple line for Tab pages text this.tabControlAdv1.MultilineText = true;
VB
'To enable multiple line for Tab pages text Me.tabControlAdv1.MultilineText = True
Screenshot

Samples:
VB: TabControlSample
Reference link: https://help.syncfusion.com/windowsforms/tabcontrol/alignment#multiline-support