Version

ToolTipTitle Property (UltraToolTipInfo)

Gets / sets the title to display on the tooltip.
Syntax
'Declaration
 
Public Property ToolTipTitle As String
public string ToolTipTitle {get; set;}
Remarks

The tooltip title appears above the tooltip text. By default, it will use the same Font as the tooltip. The font will be made bold, if possible. To specify a different font, use the ToolTipTitleAppearance.

Example
The following code demonstrates getting the ToolTipInfo for a control and setting basic properties.

Imports Infragistics.Win
Imports Infragistics.Win.UltraWinToolTip

Private Sub InitializeToolTipInfo()
        ' Get the ToolTipInfo for TextBox1
        Dim toolTipInfo As UltraToolTipInfo = Me.UltraToolTipManager1.GetUltraToolTip(Me.TextBox1)

        ' Set the ToolTipText.
        toolTipInfo.ToolTipText = "Enter some text here."

        ' Set the ToolTipTitle
        toolTipInfo.ToolTipTitle = "This is textBox1"

        ' Apply an image
        toolTipInfo.ToolTipImage = ToolTipImage.Info

        ' Apply an appearance
        toolTipInfo.Appearance.BackColor = Color.White
        toolTipInfo.Appearance.BackColor2 = Color.Chartreuse
        toolTipInfo.Appearance.BackGradientStyle = GradientStyle.Circular
        toolTipInfo.Appearance.ForeColor = Color.Black

        ' Apply an appearance to the Title. 
        toolTipInfo.ToolTipTitleAppearance.ForeColor = Color.Red
End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinToolTip;

private void InitializeToolTipInfo()
{
	// Get the ToolTipInfo for TextBox1
	UltraToolTipInfo toolTipInfo = this.ultraToolTipManager1.GetUltraToolTip(this.textBox1);
			
	// Set the ToolTipText.
	toolTipInfo.ToolTipText = "Enter some text here.";
			
	// Set the ToolTipTitle
	toolTipInfo.ToolTipTitle = "This is textBox1";
			
	// Apply an image
	toolTipInfo.ToolTipImage = ToolTipImage.Info;
			
	// Apply an appearance
	toolTipInfo.Appearance.BackColor = Color.White;
	toolTipInfo.Appearance.BackColor2 = Color.Chartreuse;
	toolTipInfo.Appearance.BackGradientStyle = GradientStyle.Circular;
	toolTipInfo.Appearance.ForeColor = Color.Black;

	// Apply an appearance to the Title. 
	toolTipInfo.ToolTipTitleAppearance.ForeColor = Color.Red;			
}
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