Spread Windows Forms 6.0 Product Documentation
ExpandRangeGroup Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Columns Class : ExpandRangeGroup Method


group
Outline (range group) to expand or collapse
expand
Whether the action is to expand the outline

Glossary Item Box

Expands or collapses a specified outline (range group) of columns.

Syntax

Visual Basic (Declaration) 
Public Sub ExpandRangeGroup( _
   ByVal group As RangeGroupInfo, _
   ByVal expand As Boolean _
) 
Visual Basic (Usage)Copy Code
Dim instance As Columns
Dim group As RangeGroupInfo
Dim expand As Boolean
 
instance.ExpandRangeGroup(group, expand)
C# 
public void ExpandRangeGroup( 
   RangeGroupInfo group,
   bool expand
)

Parameters

group
Outline (range group) to expand or collapse
expand
Whether the action is to expand the outline

Example

This example expands the specified group range.
C#Copy Code
fpSpread1.ActiveSheet.AddRangeGroup(0, 10, false);
fpSpread1.ActiveSheet.AddRangeGroup(0, 5, false);
fpSpread1.ActiveSheet.RangeGroupBackGroundColor = Color.Yellow;
fpSpread1.ActiveSheet.RangeGroupButtonStyle = FarPoint.Win.Spread.RangeGroupButtonStyle.Enhanced;

private void Button1_Click(object sender, System.EventArgs e) 
{
FarPoint.Win.Spread.RangeGroupInfo[] rgi = fpSpread1.ActiveSheet.Columns.GetRangeGroupInfo(1);
fpSpread1.ActiveSheet.Columns.ExpandRangeGroup(rgi[0], true);
}
Visual BasicCopy Code
FpSpread1.ActiveSheet.AddRangeGroup(0, 10, False)
FpSpread1.ActiveSheet.AddRangeGroup(0, 5, False)
FpSpread1.ActiveSheet.RangeGroupBackGroundColor = Color.Yellow
FpSpread1.ActiveSheet.RangeGroupButtonStyle = FarPoint.Win.Spread.RangeGroupButtonStyle.Enhanced

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim rgi() As FarPoint.Win.Spread.RangeGroupInfo = FpSpread1.ActiveSheet.Columns.GetRangeGroupInfo(1)
FpSpread1.ActiveSheet.Columns.ExpandRangeGroup(rgi(0), True)
End Sub

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

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