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


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Column Class : Background Property
Gets or sets the background for cells in this column.
Syntax
'Declaration
 
Public Property Background As Background
'Usage
 
Dim instance As Column
Dim value As Background
 
instance.Background = value
 
value = instance.Background
public Background Background {get; set;}

Property Value

The background.
Example
This example sets the background of all the cells in a column.
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";

FpSpread1.ActiveSheetView.ColumnCount = 10;
FpSpread1.ActiveSheetView.PageSize = 20;
FpSpread1.ActiveSheetView.RowCount = 20;
FarPoint.Web.Spread.Column mycol;
for (int i = 0; i < FpSpread1.ActiveSheetView.ColumnCount; i++)
{
    FpSpread1.ActiveSheetView.SetValue(i, 1, "Column Test");
    mycol= FpSpread1.ActiveSheetView.Columns[i];
    mycol.Background = bg;
    mycol.Width = 140;    
} 
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"

FpSpread1.ActiveSheetView.ColumnCount = 10
FpSpread1.ActiveSheetView.PageSize = 20
FpSpread1.ActiveSheetView.RowCount = 20
Dim mycol As FarPoint.Web.Spread.Column
Dim i As Integer = 0
Do While (i < FpSpread1.ActiveSheetView.ColumnCount)
    FpSpread1.ActiveSheetView.SetValue(i, 1, "Column Test")
    mycol = FpSpread1.ActiveSheetView.Columns(i)
    mycol.Background = bg
    mycol.Width = 140
    i = (i + 1)
Loop
See Also

Reference

Column Class
Column Members