Gets or sets the background of the grouping information.
Syntax
Visual Basic (Declaration) | |
---|
Public Property Background As Background |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As GroupInfo
Dim value As Background
instance.Background = value
value = instance.Background |
Example
This example sets the background of the grouping headers.
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";
FpSpread1.ActiveSheetView.GroupInfos.Count = 2;
FpSpread1.ActiveSheetView.GroupInfos[0].Background = bg;
FpSpread1.ActiveSheetView.AllowColumnMove = true;
FpSpread1.ActiveSheetView.AllowGroup = true;
FpSpread1.ActiveSheetView.GroupBarVisible = true;
FarPoint.Web.Spread.GroupInfo gi = new FarPoint.Web.Spread.GroupInfo();
gi.Background = bg;
FpSpread1.ActiveSheetView.GroupInfos.Add(gi); |
Visual Basic | Copy 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"
FpSpread1.ActiveSheetView.GroupInfos.Count = 2
FpSpread1.ActiveSheetView.GroupInfos(0).Background = bg
FpSpread1.ActiveSheetView.AllowColumnMove = true
FpSpread1.ActiveSheetView.AllowGroup = true
FpSpread1.ActiveSheetView.GroupBarVisible = true
Dim gi As FarPoint.Web.Spread.GroupInfo = New FarPoint.Web.Spread.GroupInfo
gi.Background = bg
FpSpread1.ActiveSheetView.GroupInfos.Add(gi) |
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