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

セルの背景を取得または設定します。
構文
'Declaration
 
Public Property Background As Background
public Background Background {get; set;}

プロパティ値

背景を含むBackgroundオブジェクト
次のサンプルコードは、セルの背景色を設定します。
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";

FarPoint.Web.Spread.Cell mycell;
mycell = FpSpread1.ActiveSheetView.Cells[0, 0];
mycell.Background = bg;
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"

Dim mycell As FarPoint.Web.Spread.Cell
mycell = FpSpread1.ActiveSheetView.Cells(0, 0)
mycell.Background = bg
参照

Cell クラス
Cell メンバ

 

 


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