Spread for ASP.NET 10 Product Documentation
Skins Field
Example 


Array of SheetSkin objects that contains the built-in skins.
Syntax
'Declaration
 
Public Shared Skins As SheetSkin()
'Usage
 
Dim value() As SheetSkin
 
value = DefaultSkins.Skins
 
DefaultSkins.Skins = value
public static SheetSkin[] Skins

Field Value

SheetSkin object containing the skin
Example
This example applies each skin to the sheet in the component.
FarPoint.Web.Spread.DefaultSkins ds = new FarPoint.Web.Spread.DefaultSkins();
foreach(FarPoint.Web.Spread.SheetSkin sk in FarPoint.Web.Spread.DefaultSkins.Skins)
{
     sk.Apply(FpSpread1);
}
Dim ds As New FarPoint.Web.Spread.DefaultSkins
Dim sk As FarPoint.Web.Spread.SheetSkin
For Each sk In ds.Skins
     sk.Apply(FpSpread1)
Next
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

DefaultSkins Class
DefaultSkins Members

 

 


Copyright © GrapeCity, inc. All rights reserved.