Finds the skin in the collection of built-in skins with the specified skin name.
Syntax
Visual Basic (Declaration) | |
---|
Public Shared Function Find( _
ByVal name As String _
) As SheetSkin |
Parameters
- name
- Name of the built-in skin to find
Return Value
SheetSkin object containing the skin in the collection with the specified name, or null if no skin is found
Example
This example finds the specified skin in the collection.
C# | Copy Code |
---|
FarPoint.Web.Spread.DefaultSkins ds = new FarPoint.Web.Spread.DefaultSkins();
TextBox1.Text = ds.Find("Colorful1").HeaderBackColor.ToString();
|
Visual Basic | Copy Code |
---|
Dim ds As New FarPoint.Web.Spread.DefaultSkins
TextBox1.Text = ds.Find("Colorful1").HeaderBackColor.ToString() |
Requirements
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
See Also