Category / Section
How to word wrap the text in the tab headers in WinForms TabControlAdv?
1 min read
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
Didn't find an answer?
Contact Support