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 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