Spread for ASP.NET 7.0 Product Documentation
Contains Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > NamedStyleCollection Class : Contains Method


style
Style (NamedStyle object) for which to check in the collection

Glossary Item Box

Determines whether the collection contains the specified style (NamedStyle object).

Syntax

Visual Basic (Declaration) 
Public Overridable Function Contains( _
   ByVal style As NamedStyle _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As NamedStyleCollection
Dim style As NamedStyle
Dim value As Boolean
 
value = instance.Contains(style)
C# 
public virtual bool Contains( 
   NamedStyle style
)

Parameters

style
Style (NamedStyle object) for which to check in the collection

Return Value

true if the object is found in the collection; false otherwise

Example

This example returns if the specified style is in the collection.
C#Copy Code
FarPoint.Web.Spread.NamedStyleCollection nsc = new FarPoint.Web.Spread.NamedStyleCollection();
FarPoint.Web.Spread.NamedStyle ns = new FarPoint.Web.Spread.NamedStyle("HeaderData", "HeaderDefault");
bool b;
ns.BackColor = Color.Teal;
ns.Border = new FarPoint.Web.Spread.Border(BorderStyle.Double, Color.Red);
nsc.Add(ns);
b = nsc.Contains(ns);
FpSpread1.NamedStyles.Add(nsc[0]);
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = nsc[0];

if(IsPostBack)
{
    TextBox1.Text = b.ToString();
}
Visual BasicCopy Code
Dim nsc As New FarPoint.Web.Spread.NamedStyleCollection
Dim ns As New FarPoint.Web.Spread.NamedStyle("HeaderData", "HeaderDefault")
Dim b As Boolean
ns.BackColor = Color.Teal
ns.Border = New FarPoint.Web.Spread.Border(BorderStyle.Double, Color.Red)
nsc.Add(ns)
b = nsc.Contains(ns)
FpSpread1.NamedStyles.Add(nsc(0))
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = nsc(0)

If IsPostBack Then
    TextBox1.Text = b.ToString()
End If

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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.