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


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)
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

StyleInfo Class
StyleInfo Members

 

 


Copyright © GrapeCity, inc. All rights reserved.