FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Cell Class : Background Property |
'Declaration Public Property Background As Background
'Usage Dim instance As Cell Dim value As Background instance.Background = value value = instance.Background
public Background Background {get; set;}
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.Cell mycell; mycell = FpSpread1.ActiveSheetView.Cells[0, 0]; mycell.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" Dim mycell As FarPoint.Web.Spread.Cell mycell = FpSpread1.ActiveSheetView.Cells(0, 0) mycell.Background = bg
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