Spread Windows Forms 10.0 Product Documentation
SetAppearance Method
Example 


Appearance object from which to set appearance settings
Sets the appearance settings of an Appearance object into this object.
Syntax
'Declaration
 
Public Sub SetAppearance( _
   ByVal appearance As Appearance _
) 
'Usage
 
Dim instance As StyleInfo
Dim appearance As Appearance
 
instance.SetAppearance(appearance)
public void SetAppearance( 
   Appearance appearance
)

Parameters

appearance
Appearance object from which to set appearance settings
Example
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
FarPoint.Win.Spread.Appearance appr = new FarPoint.Win.Spread.Appearance;
appr.BackColor = Color.Yellow;
si.SettAppearance(appr);
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = si;
Dim si As New FarPoint.Win.Spread.StyleInfo
Dim appr As New FarPoint.Win.Spread.Appearance
appr.BackColor = Color.Yellow
si.SetAppearance(appr)
FpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = si
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

StyleInfo Class
StyleInfo Members

 

 


Copyright © GrapeCity, inc. All rights reserved.