How to create MultilineText in TabPage’s ToolTipText?
3 Sep 2020 / 1 minute to read
Setting the ShowToolTips 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 at design-time.
//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";
'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"
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page