PowerTools SPREAD for ASP.NET 8.0J
Font プロパティ (GroupInfo)

グループ情報のフォント設定を取得または設定します。
構文
'Declaration
 
Public Property Font As FontInfo
public FontInfo Font {get; set;}

プロパティ値

フォント情報を含むFontInfoオブジェクト
次のサンプル コードは、グループ項目のフォントを設定します。
FpSpread1.ActiveSheetView.AllowColumnMove = true;
FpSpread1.ActiveSheetView.AllowGroup = true;
FpSpread1.ActiveSheetView.GroupBarVisible = true;

FarPoint.Web.Spread.GroupInfo gi = new FarPoint.Web.Spread.GroupInfo();
gi.Font.Bold = true;
FpSpread1.ActiveSheetView.GroupInfos.Add(gi);

FpSpread1.ActiveSheetView.AllowColumnMove = True
FpSpread1.ActiveSheetView.AllowGroup = True
FpSpread1.ActiveSheetView.GroupBarVisible = True

Dim gi As New FarPoint.Web.Spread.GroupInfo
gi.Font.Bold = True
FpSpread1.ActiveSheetView.GroupInfos.Add(gi)
参照

GroupInfo クラス
GroupInfo メンバ

 

 


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