MESCIUS SPREAD for ASP.NET 10.0J
Font プロパティ (CommandBarInfo)

Spreadコンポーネントのコマンドバーにあるシート名タブとボタンのテキストのフォントを取得または設定します。
構文
'Declaration
 
Public Property Font As FontInfo
public FontInfo Font {get; set;}

プロパティ値

コマンドバーのテキストの設定を含むFontInfoオブジェクト
解説

スタイル、サイズ、および書体名を含む複数のフォント関連の項目を指定できます。一般的なフォント設定の詳細については、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 
参照

CommandBarInfo クラス
CommandBarInfo メンバ

 

 


© MESCIUS inc. All rights reserved.