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

グループ情報のテキストの色を取得または設定します。
構文
'Declaration
 
Public Property ForeColor As Color
public Color ForeColor {get; set;}

プロパティ値

テキスト色を含む Color オブジェクト
次のサンプル コードは、グループ項目の前景色を設定します。
FpSpread1.ActiveSheetView.AllowColumnMove = true;
FpSpread1.ActiveSheetView.AllowGroup = true;
FpSpread1.ActiveSheetView.GroupBarVisible = true;

FarPoint.Web.Spread.GroupInfo gi = new FarPoint.Web.Spread.GroupInfo();
gi.ForeColor = Color.Orange;
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.ForeColor = Color.Orange
FpSpread1.ActiveSheetView.GroupInfos.Add(gi)
参照

GroupInfo クラス
GroupInfo メンバ

 

 


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