PowerTools SPREAD for Windows Forms 8.0J
FilterBarHeaderForeColor プロパティ


シートのフィルタバーヘッダのテキストの色を取得します。
構文
'Declaration
 
Public ReadOnly Property FilterBarHeaderForeColor As Color
'使用法
 
Dim instance As SheetSkin
Dim value As Color
 
value = instance.FilterBarHeaderForeColor
public Color FilterBarHeaderForeColor {get;}
次のサンプルコードは、FilterBarHeaderForeColorプロパティを取得します。
FarPoint.Win.Spread.SheetSkin sk = new FarPoint.Win.Spread.SheetSkin("sk", System.Drawing.Color.Aqua, System.Drawing.Color.LightYellow, System.Drawing.Color.Black, System.Drawing.Color.Beige, FarPoint.Win.Spread.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", "test2", "test3", "test4", "test5", System.Drawing.Color.Thistle, System.Drawing.Color.Purple, System.Drawing.Color.Bisque, System.Drawing.Color.Black, FarPoint.Win.Spread.AutoFilterMode.FilterBar);
FarPoint.Win.Spread.SheetSkin testskin = new FarPoint.Win.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.AutoFilterMode.ToString());
Dim sk As New FarPoint.Win.Spread.SheetSkin("sk", System.Drawing.Color.Aqua, System.Drawing.Color.LightYellow, System.Drawing.Color.Black, System.Drawing.Color.Beige, FarPoint.Win.Spread.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", "test2", "test3", "test4", "test5", System.Drawing.Color.Thistle, System.Drawing.Color.Purple, System.Drawing.Color.Bisque, System.Drawing.Color.Black, FarPoint.Win.Spread.AutoFilterMode.FilterBar)
Dim testskin As New FarPoint.Win.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.AutoFilterMode.ToString())
参照

SheetSkin クラス
SheetSkin メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.