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


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