Spread for ASP.NET 8.0 Product Documentation
FilterBarForeColor Property
Example 


Gets the text color of filter bar items in the sheet.
Syntax
'Declaration
 
Public ReadOnly Property FilterBarForeColor As Color
'Usage
 
Dim instance As SheetSkin
Dim value As Color
 
value = instance.FilterBarForeColor
public Color FilterBarForeColor {get;}
Example
This example gets the FilterBarForeColor 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())
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

SheetSkin Class
SheetSkin Members

 

 


Copyright © GrapeCity, inc. All rights reserved.