Creates a new skin with the property settings of the specified sheet.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim sheetView As SheetView
Dim instance As New SheetSkin(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.
C# | Copy Code |
---|
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);
|
Visual Basic | Copy Code |
---|
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