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


Gets or sets the background for cells in this alternating row.
Syntax
'Declaration
 
Public Property Background As Background
'Usage
 
Dim instance As AlternatingRow
Dim value As Background
 
instance.Background = value
 
value = instance.Background
public Background Background {get; set;}
Example
This example sets the background of the grouping headers.
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.AlternatingRows.Count = 2;
FpSpread1.ActiveSheetView.AlternatingRows[0].Background = bg;
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.AlternatingRows.Count = 2
FpSpread1.ActiveSheetView.AlternatingRows(0).Background = bg
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

AlternatingRow Class
AlternatingRow Members

 

 


Copyright © GrapeCity, inc. All rights reserved.