'Usage Dim skin As SheetSkin Dim value As Boolean value = DefaultSkins.Contains(skin)
Parameters
- skin
- Skin (SheetSkin object) for which to check
Return Value
true if the object is in the collection; false otherwise
'Usage Dim skin As SheetSkin Dim value As Boolean value = DefaultSkins.Contains(skin)
FarPoint.Web.Spread.DefaultSkins ds = new FarPoint.Web.Spread.DefaultSkins(); bool b; b = ds.Contains(ds.Colorful4); TextBox1.Text = b.ToString();
Dim ds As New FarPoint.Web.Spread.DefaultSkins Dim b As Boolean b = ds.Contains(ds.Colorful4) TextBox1.Text = b.ToString()