Version

ShowTitleToolTips Property

Specifies whether to show tool-tips specified in title attributes of the elements in formatted text values.
Syntax
'Declaration
 
Public Property ShowTitleToolTips As DefaultableBoolean
public DefaultableBoolean ShowTitleToolTips {get; set;}
Example
The following code demonstrates the usage for ShowTitleToolTips property.

Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.Misc
Imports Infragistics.Win.FormattedLinkLabel

    Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button1.Click
        ' The following formatted text has a link that contains a title tooltip. By 
        ' default when the mouse hovers over the link, value specified for the 'title' 
        ' attribute will be displayed in a tooltip. You can use the ShowTitleToolTips
        ' to disable showing of the title tooltips.
        Me.ultraFormattedLinkLabel1.Value = _
          "<a href=""http://www.infragistics.com"" title=""Click here."">Infragistics Inc.</a>"

        ' Disable displaying title tooltips.
        Me.UltraFormattedLinkLabel1.ShowTitleToolTips = False
    End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.Misc;
using Infragistics.Win.FormattedLinkLabel;
using System.Diagnostics;


		private void button1_Click(object sender, System.EventArgs e)
		{
			// The following formatted text has a link that contains a title tooltip. By 
			// default when the mouse hovers over the link, value specified for the 'title' 
			// attribute will be displayed in a tooltip. You can use the ShowTitleToolTips
			// to disable showing of the title tooltips.
			this.ultraFormattedLinkLabel1.Value = 
				@"<a href=""http://www.infragistics.com"" title=""Click here."">Infragistics Inc.</a>";

			// Disable displaying title tooltips.
            this.ultraFormattedLinkLabel1.ShowTitleToolTips = false;
		}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also