FarPoint.Web.Spread 名前空間 > CommandBarInfo クラス : Font プロパティ |
スタイル、サイズ、および書体名を含む複数のフォント関連の項目を指定できます。一般的なフォント設定の詳細については、FontInfoクラスのメンバを参照してください。フォントスタイルのリストの詳細については、Microsoft .NET FrameworkリファレンスのFontStyle列挙体を参照してください。
このプロパティの設定は、StyleNameプロパティを使用して、セルに名前付きスタイルが割り当てられ、その名前付きスタイルでFontオブジェクトを設定している場合はオーバーライドされます。
注意:上線スタイルは、Internet Explorer 4以前のリリースのブラウザではサポートされていません。
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