How to set the Fading Style for the SuperToolTip?
There are 2 types of Fading effect that can be applied to the SuperToolTip. They are Blend and System.
UseFading property is used to set the Fading effect for the SuperToolTip.
C#
superToolTip1.UseFading = SuperToolTip.FadingType.System;
superToolTip2.UseFading = SuperToolTip.FadingType.Blend;VB
superToolTip1.UseFading = SuperToolTip.FadingType.System
superToolTip2.UseFading = SuperToolTip.FadingType.BlendNote: To use this, Syncfusion.Windows.Forms.Tools must be imported as follows.
C#
using Syncfusion.Windows.Forms.Tools;VB
Imports Syncfusion.Windows.Forms.Tools