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

グループ化情報の背景を取得または設定します。
構文
'Declaration
 
Public Property Background As Background
public Background Background {get; set;}
次のサンプルコードは、グループ化ヘッダの背景を設定します。
FarPoint.Web.Spread.Background bg = new FarPoint.Web.Spread.Background();
bg.SelectedBackgroundImageUrl = "picture/Winter.jpg";
bg.BackgroundImageUrl = "picture/Image.bmp";
bg.Enable = true;
bg.BackgroundAttachment = "fixed";// inherit, scroll.
bg.BackgroundPosition = "50% 50%";
bg.BackgroundRepeat = "repeat-x";

FpSpread1.ActiveSheetView.GroupInfos.Count = 2;
FpSpread1.ActiveSheetView.GroupInfos[0].Background = bg;
FpSpread1.ActiveSheetView.AllowColumnMove = true;
FpSpread1.ActiveSheetView.AllowGroup = true;
FpSpread1.ActiveSheetView.GroupBarVisible = true;
FarPoint.Web.Spread.GroupInfo gi = new FarPoint.Web.Spread.GroupInfo();
gi.Background = bg;
FpSpread1.ActiveSheetView.GroupInfos.Add(gi);
Dim bg As FarPoint.Web.Spread.Background = New FarPoint.Web.Spread.Background
bg.SelectedBackgroundImageUrl = "picture/Winter.jpg"
bg.BackgroundImageUrl = "picture/Image.bmp"
bg.Enable = true
bg.BackgroundAttachment = "fixed"  ' inherit, scroll.
bg.BackgroundPosition = "50% 50%"
bg.BackgroundRepeat = "repeat-x"

FpSpread1.ActiveSheetView.GroupInfos.Count = 2
FpSpread1.ActiveSheetView.GroupInfos(0).Background = bg
FpSpread1.ActiveSheetView.AllowColumnMove = true
FpSpread1.ActiveSheetView.AllowGroup = true
FpSpread1.ActiveSheetView.GroupBarVisible = true
Dim gi As FarPoint.Web.Spread.GroupInfo = New FarPoint.Web.Spread.GroupInfo
gi.Background = bg
FpSpread1.ActiveSheetView.GroupInfos.Add(gi)
参照

GroupInfo クラス
GroupInfo メンバ

 

 


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