PowerTools SPREAD for ASP.NET 8.0J
ButtonFaceColor プロパティ

Spreadコンポーネントのコマンドバーのボタンの背景色を取得または設定します。
構文
'Declaration
 
Public Property ButtonFaceColor As Color
public Color ButtonFaceColor {get; set;}

プロパティ値

ボタン表面の色を含むColorオブジェクト
解説

ボタンのハイライト色と影の色を指定するには、それぞれButtonHighlightColorButtonShadowColorプロパティを使用します。ボタンのテキスト色を指定するには、ButtonTextColorを使用します。

この例では、コマンドバーのいくつかのプロパティの設定を示します。
FpSpread1.CommandBar.Background = null;
FpSpread1.CommandBar.BackColor = Color.Yellow; 
FpSpread1.CommandBar.ButtonFaceColor = Color.YellowGreen; 
FpSpread1.CommandBar.ButtonHighlightColor = Color.Coral; 
FpSpread1.CommandBar.ButtonShadowColor = Color.Bisque; 
FpSpread1.CommandBar.ButtonTextColor = Color.RoyalBlue; 
FpSpread1.CommandBar.ButtonType = FarPoint.Web.Spread.ButtonType.PushButton; 
FpSpread1.CommandBar.Font.Bold = true; 
FpSpread1.CommandBar.Font.Name = "Comic Sans MS"; 
FpSpread1.CommandBar.Visible = true; 
FpSpread1.CommandBar.Background = Nothing
FpSpread1.CommandBar.BackColor = Color.Yellow
FpSpread1.CommandBar.ButtonFaceColor = Color.YellowGreen
FpSpread1.CommandBar.ButtonHighlightColor = Color.Coral
FpSpread1.CommandBar.ButtonShadowColor = Color.Bisque
FpSpread1.CommandBar.ButtonTextColor = Color.RoyalBlue
FpSpread1.CommandBar.ButtonType = FarPoint.Web.Spread.ButtonType.PushButton
FpSpread1.CommandBar.Font.Bold = True
FpSpread1.CommandBar.Font.Name = "Comic Sans MS"
FpSpread1.CommandBar.Visible = True 
参照

CommandBarInfo クラス
CommandBarInfo メンバ
ButtonHighlightColor プロパティ
ButtonShadowColor プロパティ

 

 


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