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


Gets or sets the background for the style.
Syntax
'Declaration
 
Public Overrides Property Background As Background
'Usage
 
Dim instance As NamedStyle
Dim value As Background
 
instance.Background = value
 
value = instance.Background
public override Background Background {get; set;}
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.NamedStyle namedStyle = new FarPoint.Web.Spread.NamedStyle("StyleData");
namedStyle.Background = bg;
FpSpread1.NamedStyles.Add(namedStyle);
FpSpread1.ActiveSheetView.Cells[0, 0].StyleName = "StyleData";
FpSpread1.ActiveSheetView.SetText(0, 0, "namedStyle");
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 namedStyle As FarPoint.Web.Spread.NamedStyle = New FarPoint.Web.Spread.NamedStyle("StyleData")
namedStyle.Background = bg
FpSpread1.NamedStyles.Add(namedStyle)
FpSpread1.ActiveSheetView.Cells(0, 0).StyleName = "StyleData"
FpSpread1.ActiveSheetView.SetText(0, 0, "namedStyle")
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

NamedStyle Class
NamedStyle Members

 

 


Copyright © GrapeCity, inc. All rights reserved.