Hi,
does someone know if there is a possibility to display a tooltip (showing the complete text) on a ultralabel if the label text is trimmed.
Thanks
Stefan
Hi Stefan,
Sorry for the delay in responding to your inquiry. You can use an UltraTooltipManager to show the full text of the UltraLabel.
Add an UltraTooltipManager to your form. In code set the tooltip text for the UltraLabel as follows:
this.ultraToolTipManager1.SetUltraToolTip(this.ultraLabel1, new Infragistics.Win.UltraWinToolTip.UltraToolTipInfo(this.ultraLabel1.Text, Infragistics.Win.ToolTipImage.Default, "Full UltraLabel Text Title", Infragistics.Win.DefaultableBoolean.True));
You might also want to set the UltraTooltips.AutoPopDelay to a larger value if the text is long so the user has an opportunity to read it but not too long that it lingers unnecessarily.