Articles in this section
Category / Section

How to create multiline text in tabPage's tooltiptext in WinForms TabControlAdv?

1 min read

Tooltip settings

Setting the ShowToolTipText property of TabControlAdv to 'true' will wrap the text when using the new line character(\n) in the tooltiptext property of TabPageAdv. The new line character(\n) is not supported in design time.

C#

//Setting the ShowToolTipText property in TabControlAdv
this.tabControlAdv1.ShowToolTips=true;
//Setting the text into the ToolTipText property of TabPageAdv
this.tabPageAdv1.ToolTipText="Tab\nPageAdv1";
this.tabPageAdv1.ToolTipText="Tab\nPage\nAdv2";

VB

'Setting the ShowToolTipText property in TabControlAdv
Me.tabControlAdv1.ShowToolTips=True
'Setting the text into the ToolTipText property of TabPageAdv
Me.tabPageAdv1.ToolTipText="Tab" & Constants.vbLf & "PagAdv1"
Me.tabPageAdv2.ToolTipText="Tab" & Constants.vbLf & "Page" & Constants.vbLf & "Adv2"

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied