Spread Windows Forms 12.0 Product Documentation
SheetSkin Constructor(SheetView)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetSkin Class > SheetSkin Constructor : SheetSkin Constructor(SheetView)
Sheet (SheetView object), or null to initialize using DefaultSkins.Default
Creates a new skin with the property settings of the specified sheet.
Syntax
'Declaration
 
Public Function New( _
   ByVal sheetView As SheetView _
)
'Usage
 
Dim sheetView As SheetView
 
Dim instance As New SheetSkin(sheetView)
public SheetSkin( 
   SheetView sheetView
)

Parameters

sheetView
Sheet (SheetView object), or null to initialize using DefaultSkins.Default
Example
This example creates a new skin and applies it to the sheet in the Spread component.
FarPoint.Win.Spread.SheetView sv = new FarPoint.Win.Spread.SheetView();
sv.GrayAreaBackColor = Color.White;
sv.DefaultStyle.Border = new FarPoint.Win.LineBorder(Color.Black, 2, false, false, true, true);
sv.ColumnHeader.DefaultStyle.BackColor = Color.Red;

FarPoint.Win.Spread.SheetSkin skin = new FarPoint.Win.Spread.SheetSkin(sv);
skin.Apply(fpSpread1);
Dim sv As New FarPoint.Win.Spread.SheetView()
sv.GrayAreaBackColor = Color.White
sv.DefaultStyle.Border = New FarPoint.Win.LineBorder(Color.Black, 2, False, False, True, True)
sv.ColumnHeader.DefaultStyle.BackColor = Color.Red

Dim sk As New FarPoint.Win.Spread.SheetSkin(sv)
sk.Apply(FpSpread1)
See Also

Reference

SheetSkin Class
SheetSkin Members
Overload List