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


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