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


Glossary Item Box

Gets or sets a collection of styles.

Syntax

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

Property Value

NamedStyleCollection object containing collection of styles

Remarks

This property is available at run time only.

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

Example

This example assigns a SheetView object to the active sheet and creates a new NamedStyle object. The BackColor and Border for the NamedStyle are defined, then its added to the NamedStyles collection for the SheetView.
Visual BasicCopy Code
Dim sv As FarPoint.Web.Spread.SheetView
Dim style1 As New FarPoint.Web.Spread.NamedStyle()
style1.BackColor=Color.Yellow
style1.Border=NewFarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red,3)
sv=FpSpread1.ActiveSheetView
sv.NamedStyles.Add(style1)
sv.DefaultStyle=style1
C#Copy Code
FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView;
FarPoint.Web.Spread.NamedStyle style1=new FarPoint.Web.Spread.NamedStyle();
style1.BackColor=Color.Yellow;
style1.Border=new FarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red,3);
sv.NamedStyles.Add(style1);
sv.DefaultStyle=style1;

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.