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


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > StyleInfo Class > StyleInfo Constructor : StyleInfo Constructor(String)
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 
See Also

Reference

StyleInfo Class
StyleInfo Members
Overload List
NamedStyle Class