Spread Windows Forms 6.0 Product Documentation
StyleInfo Constructor(String)
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class > StyleInfo Constructor : StyleInfo Constructor(String)


parentName
Name of the parent NamedStyle object

Glossary Item Box

Creates a set of cell-level style settings (StyleInfo object) with the specified parent style.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal parentName As String _
)
Visual Basic (Usage)Copy Code
Dim parentName As String
 
Dim instance As New StyleInfo(parentName)
C# 
public StyleInfo( 
   string parentName
)

Parameters

parentName
Name of the parent NamedStyle object

Example

C#Copy Code
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo("StyleHeaders");
si.BackColor = Color.Yellow;
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = si;
Visual BasicCopy Code
Dim si As New FarPoint.Win.Spread.StyleInfo("StyleHeaders")
si.BackColor = Color.Yellow
FpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = si

Requirements

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

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.