Gets or sets the background for a cell.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public Property Background As Background  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As Cell
Dim value As Background
 
instance.Background = value
 
value = instance.Background  | 
 
            
            
            Property Value
Background object containing the background
 
            
			
			
            
            
            
Example
This example sets the background of a cell.
             
| C# |  Copy Code | 
|---|
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;  | 
 
| Visual Basic |  Copy Code | 
|---|
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  | 
 
 
            
            
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
 
            
            
See Also