FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : ActiveSkin Property |
'Declaration Public Property ActiveSkin As SheetSkin
'Usage Dim instance As SheetView Dim value As SheetSkin instance.ActiveSkin = value value = instance.ActiveSkin
public SheetSkin ActiveSkin {get; set;}
This property is available at run time only.
The skin defines the appearance of the sheet. For more information on applying built-in skins or creating your own, refer to Applying a Skin to a Sheet and Creating a Custom Skin.
if (IsPostBack) { return; } FarPoint.Web.Spread.SheetView sv = new FarPoint.Web.Spread.SheetView(); FarPoint.Web.Spread.DefaultSkins sk = new FarPoint.Web.Spread.DefaultSkins(); sv.ActiveSkin = sk.Classic2; FpSpread1.Sheets.Add(sv);
If IsPostBack Then Return End If Dim sv As New FarPoint.Web.Spread.SheetView Dim sk As New FarPoint.Web.Spread.DefaultSkins sv.ActiveSkin = sk.Classic2 FpSpread1.Sheets.Add(sv)
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
SheetView Class
SheetView Members
SheetSkin Class
DefaultSkins Class