Gets or sets the appearance of text tips in the view.
Syntax
Visual Basic (Declaration) | |
---|
Public Property TextTipAppearance As TipAppearance |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SpreadView
Dim value As TipAppearance
instance.TextTipAppearance = value
value = instance.TextTipAppearance |
Property Value
TipAppearance object containing the appearance settings for the text tip
Remarks
Example
This example sets the TextTipAppearance property.
C# | Copy Code |
---|
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;
|
VB.NET | Copy Code |
---|
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
|
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also