Spread Windows Forms 12.0 Product Documentation
AddRange(ICollection) Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > NamedStyleCollection Class > AddRange Method : AddRange(ICollection) Method
NamedStyleCollection or array of NamedStyle objects to add to the collection
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
NamedStyleCollection or array of NamedStyle objects to add to the collection
Example
This example adds a range of styles.
FarPoint.Win.Spread.NamedStyle[] ns = {new FarPoint.Win.Spread.NamedStyle("Style1"),
new FarPoint.Win.Spread.NamedStyle("Style2"),
new FarPoint.Win.Spread.NamedStyle("Style3")}; 

FarPoint.Win.Spread.NamedStyleCollection nsc = new FarPoint.Win.Spread.NamedStyleCollection();

ns[0].Font = new Font("Comic Sans Serif", 12);
ns[0].Name = "StyleHeaders";
ns[0].Parent = "HeaderDefault";

nsc.AddRange(ns);

fpSpread1.NamedStyles = nsc;
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = ns[0];
Dim ns As FarPoint.Win.Spread.NamedStyle() = {New FarPoint.Win.Spread.NamedStyle("Style1"), 
New FarPoint.Win.Spread.NamedStyle("Style2"), 
New FarPoint.Win.Spread.NamedStyle("Style3")}

Dim nsc As New FarPoint.Win.Spread.NamedStyleCollection

ns(0).Font = New Font("Comic Sans Serif", 12)
ns(0).Name = "StyleHeaders"
ns(0).Parent = "HeaderDefault"

nsc.AddRange(ns)

FpSpread1.NamedStyles = nsc
FpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = ns(0)
See Also

Reference

NamedStyleCollection Class
NamedStyleCollection Members
Overload List