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

この行のセルの背景を取得または設定します。
構文
'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.ColumnCount = 10;
FpSpread1.ActiveSheetView.PageSize = 20;
FpSpread1.ActiveSheetView.RowCount = 20;
FarPoint.Web.Spread.Row myrow;

for (int i = 0; i < FpSpread1.ActiveSheetView.RowCount; i++)
{
    FpSpread1.ActiveSheetView.SetValue(i, 1, "Row Test");
    myrow = FpSpread1.ActiveSheetView.Rows[i];
    myrow.Background=bg;
    myrow.Height = 70;
} 
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.ColumnCount = 10
FpSpread1.ActiveSheetView.PageSize = 20
FpSpread1.ActiveSheetView.RowCount = 20
Dim myrow As FarPoint.Web.Spread.Row
Dim i As Integer
i = 0
Do While (i < FpSpread1.ActiveSheetView.RowCount)
    FpSpread1.ActiveSheetView.SetValue(i, 1, "Row Test")
    myrow = FpSpread1.ActiveSheetView.Rows(i)
    myrow.Background = bg
    myrow.Height = 70
    i = (i + 1)
Loop
参照

Row クラス
Row メンバ

 

 


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