Parameters
- sheetView
- SheetView, or null to initialize using DefaultSkins.Default
This method initializes an instance of the SheetSkin class and initializes it with the property values of the specified SheetView object.
This example creates a new skin and applies it to the component.
C# | Copy Code |
---|---|
FarPoint.Web.Spread.SheetView sv = new FarPoint.Web.Spread.SheetView(); sv.DefaultStyle.BackColor = Color.Wheat; sv.ColumnHeader.DefaultStyle.BackColor = Color.LightGreen; sv.RowHeader.DefaultStyle.BackColor = Color.YellowGreen; FarPoint.Web.Spread.SheetSkin sk = new FarPoint.Web.Spread.SheetSkin(sv); sk.Apply(FpSpread1); |
Visual Basic | Copy Code |
---|---|
Dim sv As New FarPoint.Web.Spread.SheetView sv.DefaultStyle.BackColor = Color.Wheat sv.ColumnHeader.DefaultStyle.BackColor = Color.LightGreen sv.RowHeader.DefaultStyle.BackColor = Color.YellowGreen Dim sk As New FarPoint.Web.Spread.SheetSkin(sv) sk.Apply(FpSpread1) |
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family