Spread for ASP.NET 11 Product Documentation
SheetSkin Constructor(String,Color,Color,Color,Int32,Color,GridLines,Color,Color,Color,Color,Color,Color,Boolean,Boolean,Boolean,Boolean,Boolean,Background,Background,Background,Color)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetSkin Class > SheetSkin Constructor : SheetSkin Constructor(String,Color,Color,Color,Int32,Color,GridLines,Color,Color,Color,Color,Color,Color,Boolean,Boolean,Boolean,Boolean,Boolean,Background,Background,Background,Color)
Name of the skin
Background color for the sheet
Background color of the cells
Text color of the cells
Cell spacing in the table
Grid line color
Which grid lines are displayed
Background color of the headers
Text color of the headers
Background color of selected cells
Text color of selected cells
Background color of even rows
Background color of odd rows
Whether flat headers are displayed (or default three-dimensional headers)
Whether flat headers are displayed (or default three-dimensional headers)
Whether bold font in headers
Whether to display the column header
Whether to display the row header
Column header background
Row header background
Sheet corner background
Color of the header gray area
Creates a new skin with the specified settings.
Syntax
'Declaration
 
Public Function New( _
   ByVal name As String, _
   ByVal backColor As Color, _
   ByVal cellBackColor As Color, _
   ByVal cellForeColor As Color, _
   ByVal cellSpacing As Integer, _
   ByVal gridLineColor As Color, _
   ByVal gridLines As GridLines, _
   ByVal headerBackColor As Color, _
   ByVal headerForeColor As Color, _
   ByVal selectionBackColor As Color, _
   ByVal selectionForeColor As Color, _
   ByVal evenRowBackColor As Color, _
   ByVal oddRowBackColor As Color, _
   ByVal flatColumnHeader As Boolean, _
   ByVal flatRowHeader As Boolean, _
   ByVal headerFontBold As Boolean, _
   ByVal showColumnHeader As Boolean, _
   ByVal showRowHeader As Boolean, _
   ByVal columnHeaderBackground As Background, _
   ByVal rowHeaderBackground As Background, _
   ByVal sheetCornerBackground As Background, _
   ByVal headerGrayAreaColor As Color _
)
'Usage
 
Dim name As String
Dim backColor As Color
Dim cellBackColor As Color
Dim cellForeColor As Color
Dim cellSpacing As Integer
Dim gridLineColor As Color
Dim gridLines As GridLines
Dim headerBackColor As Color
Dim headerForeColor As Color
Dim selectionBackColor As Color
Dim selectionForeColor As Color
Dim evenRowBackColor As Color
Dim oddRowBackColor As Color
Dim flatColumnHeader As Boolean
Dim flatRowHeader As Boolean
Dim headerFontBold As Boolean
Dim showColumnHeader As Boolean
Dim showRowHeader As Boolean
Dim columnHeaderBackground As Background
Dim rowHeaderBackground As Background
Dim sheetCornerBackground As Background
Dim headerGrayAreaColor As Color
 
Dim instance As New SheetSkin(name, backColor, cellBackColor, cellForeColor, cellSpacing, gridLineColor, gridLines, headerBackColor, headerForeColor, selectionBackColor, selectionForeColor, evenRowBackColor, oddRowBackColor, flatColumnHeader, flatRowHeader, headerFontBold, showColumnHeader, showRowHeader, columnHeaderBackground, rowHeaderBackground, sheetCornerBackground, headerGrayAreaColor)

Parameters

name
Name of the skin
backColor
Background color for the sheet
cellBackColor
Background color of the cells
cellForeColor
Text color of the cells
cellSpacing
Cell spacing in the table
gridLineColor
Grid line color
gridLines
Which grid lines are displayed
headerBackColor
Background color of the headers
headerForeColor
Text color of the headers
selectionBackColor
Background color of selected cells
selectionForeColor
Text color of selected cells
evenRowBackColor
Background color of even rows
oddRowBackColor
Background color of odd rows
flatColumnHeader
Whether flat headers are displayed (or default three-dimensional headers)
flatRowHeader
Whether flat headers are displayed (or default three-dimensional headers)
headerFontBold
Whether bold font in headers
showColumnHeader
Whether to display the column header
showRowHeader
Whether to display the row header
columnHeaderBackground
Column header background
rowHeaderBackground
Row header background
sheetCornerBackground
Sheet corner background
headerGrayAreaColor
Color of the header gray area
Example
This example creates and applies a sheet skin.
FarPoint.Web.Spread.Background colbg = new FarPoint.Web.Spread.Background();
colbg.BackgroundImageUrl = "picture/Winter.jpg";

FarPoint.Web.Spread.Background rowbg = new FarPoint.Web.Spread.Background();
rowbg.BackgroundImageUrl = "picture/Image.bmp";

FarPoint.Web.Spread.Background cornerbg = new FarPoint.Web.Spread.Background();
cornerbg.BackgroundImageUrl = "picture/BackgroundImage.bmp";

FarPoint.Web.Spread.SheetSkin mySkin = new FarPoint.Web.Spread.SheetSkin("TestSkin", Color.LightGoldenrodYellow,Color.Wheat,
Color.DarkGreen, 2, Color.YellowGreen, GridLines.Both,Color.Thistle, Color.BlanchedAlmond, Color.Wheat,Color.DarkBlue, Color.Empty,
Color.Empty, false, false, true, true, true, colbg, rowbg, cornerbg, Color.Pink);
 mySkin.Apply(FpSpread1.ActiveSheetView);
Dim colbg As New FarPoint.Web.Spread.Background()
colbg.BackgroundImageUrl = "picture/Winter.jpg"

Dim rowbg As New FarPoint.Web.Spread.Background()
rowbg.BackgroundImageUrl = "picture/Image.bmp"

Dim cornerbg As New FarPoint.Web.Spread.Background()
cornerbg.BackgroundImageUrl = "picture/BackgroundImage.bmp"

Dim mySkin As New FarPoint.Web.Spread.SheetSkin("TestSkin", Color.LightGoldenrodYellow, Color.Wheat, Color.DarkGreen, 2, Color.YellowGreen,
GridLines.Both, Color.Thistle, Color.BlanchedAlmond, Color.Wheat, Color.DarkBlue, Color.Empty, Color.Empty, False, False,
True, True, True, colbg, rowbg, cornerbg, Color.Pink)
mySkin.Apply(FpSpread1.ActiveSheetView)
See Also

Reference

SheetSkin Class
SheetSkin Members
Overload List