Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / NamedStyleCollection Class / AddRange Method / AddRange(ICollection) Method
ICollection object containing the styles to add to the collection
Example


In This Topic
    AddRange(ICollection) Method
    In This Topic
    Adds an array of styles (NamedStyle objects) to the collection.
    Syntax
    'Declaration
     
    
    Public Overloads Overridable Sub AddRange( _
       ByVal c As ICollection _
    ) 
    'Usage
     
    
    Dim instance As NamedStyleCollection
    Dim c As ICollection
     
    instance.AddRange(c)
    public virtual void AddRange( 
       ICollection c
    )

    Parameters

    c
    ICollection object containing the styles to add to the collection
    Remarks
    This method adds a NamedStyleCollection or an array of NamedStyle objects to the collection.
    Example
    This example adds a range of styles to the collection.
    See Also