Loads a skin from a file.
Syntax
Parameters
- fileName
- Path and file name from which to load the skin
Return Value
SheetSkin object containing the skin
Example
This example loads a skin from a string.
C# | Copy Code |
---|
FarPoint.Web.Spread.SheetSkin sk;
if (IsPostBack)
{
sk.Load("D:\\skinsave.skn").Apply(FpSpread1);
}
|
Visual Basic | Copy Code |
---|
Dim sk As FarPoint.Web.Spread.SheetSkin
If IsPostBack Then
sk.Load("D:\skinsave.skn").Apply(FpSpread1)
End If |
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