Spread for ASP.NET 8.0 Product Documentation > Developer's Guide > Customizing the Appearance > Customizing the Appearance of the Sheet > Applying a Skin to a Sheet |
You can quickly customize the appearance of a sheet by applying a "skin" to it. Built-in (default) skins are provided with Spread to create common formats. You can also create your own custom skin and save it to use again, similar to a template.
For an overview and illustrations of sheet skins, see Creating a Skin for Sheets.
This example code sets the first sheet to use the Colorful2 predefined skin.
C# |
Copy Code
|
---|---|
FarPoint.Web.Spread.DefaultSkins.Colorful2. Apply(FpSpread1.Sheets[0]); |
VB |
Copy Code
|
---|---|
FarPoint.Web.Spread.DefaultSkins.Colorful2. Apply(FpSpread1.Sheets(0)) |