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
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.
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 Basic | Copy 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) |
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8