Spread for ASP.NET 11 Product Documentation
Enable Property
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Background Class : Enable Property
Gets or sets whether the Background image is enabled.
Syntax
'Declaration
 
Public Property Enable As Boolean
'Usage
 
Dim instance As Background
Dim value As Boolean
 
instance.Enable = value
 
value = instance.Enable
public bool Enable {get; set;}

Property Value

Boolean: true if enabled; false otherwise
Example
This example sets the background image for the column.
FpSpread1.Columns[0].Background.BackgroundImageUrl = FarPoint.Web.Spread.Background.DEFAULT_GRADIENT_MASK_IMAGE;
FpSpread1.Columns[0].Background.Enable = true;
FpSpread1.Columns[0].Background.SelectedBackgroundImageUrl = FarPoint.Web.Spread.Background.DEFAULT_GRADIENT_MASK_IMAGE;
FpSpread1.Columns(0).Background.BackgroundImageUrl = FarPoint.Web.Spread.Background.DEFAULT_GRADIENT_MASK_IMAGE
FpSpread1.Columns(0).Background.Enable = True
FpSpread1.Columns(0).Background.SelectedBackgroundImageUrl = FarPoint.Web.Spread.Background.DEFAULT_GRADIENT_MASK_IMAGE
See Also

Reference

Background Class
Background Members