Spread Windows Forms 12.0 Product Documentation
ExpandRangeGroup Method (Rows)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Rows Class : ExpandRangeGroup Method
Outline (range group) to expand or collapse
Whether the action is to expand the outline
Expands or collapses a specified outline (range group) of rows.
Syntax
'Declaration
 
Public Sub ExpandRangeGroup( _
   ByVal group As RangeGroupInfo, _
   ByVal expand As Boolean _
) 
'Usage
 
Dim instance As Rows
Dim group As RangeGroupInfo
Dim expand As Boolean
 
instance.ExpandRangeGroup(group, expand)
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 one of the ranges in the group.
fpSpread1.ActiveSheet.AddRangeGroup(0, 10, true); 
fpSpread1.ActiveSheet.RangeGroupBackGroundColor = Color.Yellow; 
fpSpread1.ActiveSheet.RangeGroupButtonStyle = FarPoint.Win.Spread.RangeGroupButtonStyle.Enhanced; 
fpSpread1.ActiveSheet.Rows.AddGroup(0, 2); 

private void Button1_Click(object sender, System.EventArgs e) 
{
FarPoint.Win.Spread.RangeGroupInfo[] rgi = fpSpread1.ActiveSheet.Rows.GetRangeGroupInfo(1);
fpSpread1.ActiveSheet.Rows.ExpandRangeGroup(rgi[0], true);
}
FpSpread1.ActiveSheet.AddRangeGroup(0, 10, True)
FpSpread1.ActiveSheet.RangeGroupBackGroundColor = Color.Yellow
FpSpread1.ActiveSheet.RangeGroupButtonStyle = FarPoint.Win.Spread.RangeGroupButtonStyle.Enhanced
FpSpread1.ActiveSheet.Rows.AddGroup(0, 2)

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.Rows.GetRangeGroupInfo(1)
FpSpread1.ActiveSheet.Rows.ExpandRangeGroup(rgi(0), True)
End Sub
See Also

Reference

Rows Class
Rows Members