Spread ASP.NET 6.0 Product Documentation
Skins Field
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > DefaultSkins Class : Skins Field


Glossary Item Box

Array of SheetSkin objects containing the built-in skins.

Syntax

Visual Basic (Declaration) 
Public Shared Skins As SheetSkin()
Visual Basic (Usage)Copy Code
Dim value() As SheetSkin
 
value = DefaultSkins.Skins
 
DefaultSkins.Skins = value
C# 
public static SheetSkin[] Skins

Field Value

SheetSkin object containing the skin

Example

This example applies each skin to the sheet in the component.
C#Copy Code
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);
}
Visual BasicCopy Code
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 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

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.