Spread Windows Forms 12.0 Product Documentation
ColumnHeaderDefaultEnhanced Field
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > DefaultStyleCollection Class : ColumnHeaderDefaultEnhanced Field
Represents the new default style for column header cells. This field is read-only.
Syntax
'Declaration
 
Public Shared ReadOnly ColumnHeaderDefaultEnhanced As NamedStyle
'Usage
 
Dim value As NamedStyle
 
value = DefaultStyleCollection.ColumnHeaderDefaultEnhanced
public static readonly NamedStyle ColumnHeaderDefaultEnhanced
Example
This example sets the column header style.
FarPoint.Win.Spread.NamedStyle backstyle = new FarPoint.Win.Spread.NamedStyle("NewStyle", "ColumnHeaderDefaultEnhanced");
fpSpread1.NamedStyles.Add(backstyle);
FarPoint.Win.Spread.SheetView sheetView = fpSpread1.ActiveSheet;
FarPoint.Win.Spread.SpreadSkin skin = new FarPoint.Win.Spread.SpreadSkin();
skin.ColumnHeaderDefaultStyle = backstyle;
fpSpread1.Skin = skin;
Dim backstyle As New FarPoint.Win.Spread.NamedStyle("NewStyle", "ColumnHeaderDefaultEnhanced")
FpSpread1.NamedStyles.Add(backstyle)
Dim sheetview As FarPoint.Win.Spread.SheetView = FpSpread1.ActiveSheet
Dim skin As New FarPoint.Win.Spread.SpreadSkin()
skin.ColumnHeaderDefaultStyle = backstyle
FpSpread1.Skin = skin
See Also

Reference

DefaultStyleCollection Class
DefaultStyleCollection Members