Spread for ASP.NET 7.0 Product Documentation
Background Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > StyleInfo Class : Background Property


Glossary Item Box

Gets or sets the style for the cell background.

Syntax

Visual Basic (Declaration) 
Public Overridable Property Background As Background
Visual Basic (Usage)Copy Code
Dim instance As StyleInfo
Dim value As Background
 
instance.Background = value
 
value = instance.Background
C# 
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.
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.StyleInfo style = new FarPoint.Web.Spread.StyleInfo();
style.Background = bg;
FpSpread1.ActiveSheetView.SetStyleInfo(3, 3, style);
Visual BasicCopy 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 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 Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.