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

セル背景のスタイルを取得または設定します。
構文
'Declaration
 
Public Overridable Property Background As Background
public virtual 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.StyleInfo style = new FarPoint.Web.Spread.StyleInfo();
style.Background = bg;
FpSpread1.ActiveSheetView.SetStyleInfo(3, 3, style);
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 style As FarPoint.Web.Spread.StyleInfo = New FarPoint.Web.Spread.StyleInfo
style.Background = bg
FpSpread1.ActiveSheetView.SetStyleInfo(3, 3, style)
参照

StyleInfo クラス
StyleInfo メンバ

 

 


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