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


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)
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

Reference

SheetSkin Class
SheetSkin Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.