Spread ASP.NET 15
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetSkin Class / FilterBarHeaderForeColor Property
Example


In This Topic
    FilterBarHeaderForeColor Property
    In This Topic
    Gets the text color of the filter bar header in the sheet.
    Syntax
    'Declaration
     
    Public ReadOnly Property FilterBarHeaderForeColor As Color
    'Usage
     
    Dim instance As SheetSkin
    Dim value As Color
     
    value = instance.FilterBarHeaderForeColor
    public Color FilterBarHeaderForeColor {get;}
    Example
    This example gets the FilterBarHeaderForeColor property.
    FarPoint.Web.Spread.SheetSkin sk = new FarPoint.Web.Spread.SheetSkin("sk", System.Drawing.Color.Aqua, System.Drawing.Color.LightYellow, System.Drawing.Color.Black, 1, System.Drawing.Color.Beige, GridLines.Both, System.Drawing.Color.AliceBlue, System.Drawing.Color.DarkBlue, System.Drawing.Color.Beige, System.Drawing.Color.DarkSeaGreen, System.Drawing.Color.AntiqueWhite, System.Drawing.Color.LightSlateGray, false, false, true, true, true, "test", "test1", System.Drawing.Color.Thistle, System.Drawing.Color.Purple, System.Drawing.Color.Bisque, System.Drawing.Color.Black, true);
    FarPoint.Web.Spread.SheetSkin testskin = new FarPoint.Web.Spread.SheetSkin(sk);
    testskin.Apply(FpSpread1);     
    ListBox1.Items.Add(sk.FilterBarHeaderBackColor.ToString());
    ListBox1.Items.Add(sk.FilterBarHeaderForeColor.ToString());
    ListBox1.Items.Add(sk.FilterBarBackColor.ToString());
    ListBox1.Items.Add(sk.FilterBarForeColor.ToString());
    ListBox1.Items.Add(sk.ShowFilterBar.ToString());
    Dim sk As New FarPoint.Web.Spread.SheetSkin("sk", Drawing.Color.Aqua, Drawing.Color.LightYellow, Drawing.Color.Black, 1, Drawing.Color.Beige, GridLines.Both, Drawing.Color.AliceBlue, Drawing.Color.DarkBlue, Drawing.Color.Beige, Drawing.Color.DarkSeaGreen, Drawing.Color.AntiqueWhite, Drawing.Color.LightSlateGray, False, False, True, True, True, "test", "test1", Drawing.Color.Thistle, Drawing.Color.Purple, Drawing.Color.Bisque, Drawing.Color.Black, True)
    Dim testskin As New FarPoint.Web.Spread.SheetSkin(sk)
    testskin.Apply(FpSpread1)
    ListBox1.Items.Add(sk.FilterBarHeaderBackColor.ToString())
    ListBox1.Items.Add(sk.FilterBarHeaderForeColor.ToString())
    ListBox1.Items.Add(sk.FilterBarBackColor.ToString())
    ListBox1.Items.Add(sk.FilterBarForeColor.ToString())
    ListBox1.Items.Add(sk.ShowFilterBar.ToString())
    See Also