Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / DefaultStyleCollection Class / ColumnHeaderSeashell Field
Example


In This Topic
    ColumnHeaderSeashell Field
    In This Topic
    Represents the enhanced style for column header cells.
    Syntax
    'Declaration
     
    Public Shared ReadOnly ColumnHeaderSeashell As NamedStyle
    'Usage
     
    Dim value As NamedStyle
     
    value = DefaultStyleCollection.ColumnHeaderSeashell
    public static readonly NamedStyle ColumnHeaderSeashell
    Example
    This example creates a column header style.
    FarPoint.Win.Spread.NamedStyle backstyle = new FarPoint.Win.Spread.NamedStyle("NewStyle", "ColumnHeaderSeashell");
    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", "ColumnHeaderSeashell")
    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