Spread Windows Forms 10.0 Product Documentation
NamedStyles Property (DefaultSheetStyleModel)
Example 


Gets or sets the named styles collection for the model.
Syntax
'Declaration
 
Public Overridable Property NamedStyles As NamedStyleCollection
'Usage
 
Dim instance As DefaultSheetStyleModel
Dim value As NamedStyleCollection
 
instance.NamedStyles = value
 
value = instance.NamedStyles
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.
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);
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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

DefaultSheetStyleModel Class
DefaultSheetStyleModel Members

 

 


Copyright © GrapeCity, inc. All rights reserved.