Spread for ASP.NET 11 Product Documentation
Background Property (StyleInfo)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > StyleInfo Class : Background Property
Gets or sets the style for the cell background.
Syntax
'Declaration
 
Public Overridable Property Background As Background
'Usage
 
Dim instance As StyleInfo
Dim value As Background
 
instance.Background = value
 
value = instance.Background
public virtual Background Background {get; set;}

Property Value

Background object containing the background of the cell for the style
Example
This example customizes the background as part of style information.
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)
See Also

Reference

StyleInfo Class
StyleInfo Members