Spread Windows Forms 12.0 Product Documentation
TextTipAppearance Property (SpreadView)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadView Class : TextTipAppearance Property
Gets or sets the appearance of text tips in the view.
Syntax
'Declaration
 
Public Property TextTipAppearance As TipAppearance
'Usage
 
Dim instance As SpreadView
Dim value As TipAppearance
 
instance.TextTipAppearance = value
 
value = instance.TextTipAppearance
public TipAppearance TextTipAppearance {get; set;}

Property Value

TipAppearance object containing the appearance settings for the text tip
Remarks
The appearance of the default text tips is determined by your system settings and some other default settings. Use this property to customize the appearance.
Example
This example sets the TextTipAppearance property.
FarPoint.Win.Spread.SpreadView sv;
FarPoint.Win.Spread.TipAppearance ta = new FarPoint.Win.Spread.TipAppearance(Color.Yellow, Color.Red, new Font("Comic Sans
MS", 10));
sv = fpSpread1.GetRootWorkbook();
sv.TextTipAppearance = ta;
Dim sv As FarPoint.Win.Spread.SpreadView
Dim ta As New FarPoint.Win.Spread.TipAppearance(Color.Yellow, Color.Red, New Font("Comic Sans MS", 10))
sv = FpSpread1.GetRootWorkbook()
sv.TextTipAppearance = ta
See Also

Reference

SpreadView Class
SpreadView Members
TextTipDelay Property
TextTipPolicy Property

User-Task Documentation

Displaying Text Tips