Gets or sets the appearance of text tips in the view.
            
            
            
 Syntax
Syntax
| Visual Basic (Declaration) |  | 
|---|
| Public Property TextTipAppearance As TipAppearance | 
| Visual Basic (Usage) |  Copy Code | 
|---|
| Dim instance As FpSpread
Dim value As TipAppearance
 
instance.TextTipAppearance = value
 
value = instance.TextTipAppearance | 
Property Value
TipAppearance setting that determines the appearance of the text tip
Remarks
            
             Example
Example
This example customizes the appearance of the text tip.
             
| C# |  Copy Code | 
|---|
| FarPoint.Win.Spread.TipAppearance app = new FarPoint.Win.Spread.TipAppearance();
app.BackColor = Color.Yellow;
app.Font = new Font("Comic Sans MS", 12);
app.ForeColor = Color.Red;
fpSpread1.TextTipPolicy = FarPoint.Win.Spread.TextTipPolicy.Floating;
fpSpread1.ActiveSheet.Cells[0, 0].Text = "Text Tip Appearance";
fpSpread1.TextTipAppearance = app;
 | 
| Visual Basic |  Copy Code | 
|---|
| Dim app As New FarPoint.Win.Spread.TipAppearance
app.BackColor = Color.Yellow
app.Font = New Font("Comic Sans MS", 12)
app.ForeColor = Color.Red
FpSpread1.TextTipPolicy = FarPoint.Win.Spread.TextTipPolicy.Floating
FpSpread1.ActiveSheet.Cells(0, 0).Text = "Text Tip Appearance"
FpSpread1.TextTipAppearance = app | 
 Requirements
Requirements
Target Platforms: 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
See Also