Spread for ASP.NET 10 Product Documentation
StyleInfo Constructor(String)
Example 


Name of the parent NamedStyle object
Creates a set of cell-level style settings (StyleInfo object) with the specified parent style.
Syntax
'Declaration
 
Public Function New( _
   ByVal parentName As String _
)
'Usage
 
Dim parentName As String
 
Dim instance As New StyleInfo(parentName)
public StyleInfo( 
   string parentName
)

Parameters

parentName
Name of the parent NamedStyle object
Example
This example creates a new style info object.
FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo("HeaderDefault");
si.Border = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red);
FpSpread1.ActiveSheetView..ColumnHeader.DefaultStyle = si; 
Dim si As New FarPoint.Web.Spread.StyleInfo("HeaderDefault")
si.Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red)
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = si 
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

StyleInfo Class
StyleInfo Members
Overload List
NamedStyle Class

 

 


Copyright © GrapeCity, inc. All rights reserved.