Spread Windows Forms 6.0 Product Documentation
NamedStyles Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetStyleModel Class : NamedStyles Property


Glossary Item Box

Gets or sets the named styles collection for the model.

Syntax

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

Property Value

NamedStyleCollection object that contains the collection of styles

Remarks

When the NamedStyleCollection property is set, any named styles referenced in the model are reset to the named style in the new named styles collection with the same name, or reset to null if there is no named style in the new named styles collection with the same name.

Example

This example adds a named style to the model.
C#Copy Code
FarPoint.Win.Spread.Model.DefaultSheetStyleModel defstyleModel = new FarPoint.Win.Spread.Model.DefaultSheetStyleModel();
defstyleModel = (FarPoint.Win.Spread.Model.DefaultSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
FarPoint.Win.Spread.NamedStyle sInfo = new FarPoint.Win.Spread.NamedStyle();
sInfo.BackColor = Color.LightBlue;
defstyleModel.NamedStyles.Add(sInfo);
Visual BasicCopy Code
Dim defstyleModel As New FarPoint.Win.Spread.Model.DefaultSheetStyleModel()
defstyleModel = FpSpread1.ActiveSheet.Models.Style
Dim sInfo As New FarPoint.Win.Spread.NamedStyle()
sInfo.BackColor = Color.LightBlue
defstyleModel.NamedStyles.Add(sInfo)

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

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