Spread for ASP.NET 7.0 Product Documentation
NamedStyles Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > FpSpread Class : NamedStyles Property


Glossary Item Box

Gets a collection of styles for the Spread component.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property NamedStyles As NamedStyleCollection
Visual Basic (Usage)Copy Code
Dim instance As FpSpread
Dim value As NamedStyleCollection
 
value = instance.NamedStyles
C# 
public NamedStyleCollection NamedStyles {get;}

Property Value

NamedStyleCollection containing the styles

Remarks

By default, this collection is shared between all sheets and style models in the component. When set, all style models that implement the INamedStyleSupport interface in the sheet are updated to reference the new collection.

Example

This example creates two objects for the spreadsheet, a ColumnHeader and a NamedStyle. The NamedStyles background color is set to yellow, and is then applied to the ColumnHeader object, resulting in all the column headers having a background color of yellow.
C#Copy Code
FarPoint.Web.Spread.ColumnHeader colhdr;
FarPoint.Web.Spread.NamedStylemn style=new FarPoint.Web.Spread.NamedStyle();
mnstyle.Name="fpstyle";
mnstyle.BackColor=Color.Yellow;
FpSpread1.NamedStyles.Add(mnstyle);
colhdr=FpSpread1.ActiveSheetView.ColumnHeader;
colhdr.DefaultStyleName=mnstyle.Name;
Visual BasicCopy Code
Dim colhdr As Far Point.Web.Spread.ColumnHeader
Dim mnstyle As New FarPoint.Web.Spread.NamedStyle()
mnstyle.Name="fpstyle"
mnstyle.BackColor=Color.Yellow
FpSpread1.NamedStyles.Add(mnstyle)
colhdr=FpSpread1.ActiveSheetView.ColumnHeader
colhdr.DefaultStyleName=mnstyle.Name

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.