Spread WPF Documentation
Ungroup(Int32,Int32) Method
Example 


The group starting index.
The number of rows or columns to remove.
Removes a range of rows or columns from the outline (range group) at the specified start index by a specified amount.
Syntax
'Declaration
 
Public Overloads Sub Ungroup( _
   ByVal index As System.Integer, _
   ByVal count As System.Integer _
) 
'Usage
 
Dim instance As RangeGroup
Dim index As System.Integer
Dim count As System.Integer
 
instance.Ungroup(index, count)
public void Ungroup( 
   System.int index,
   System.int count
)

Parameters

index
The group starting index.
count
The number of rows or columns to remove.
Example
This example uses the Ungroup method.
gcSpreadSheet1.Sheets[0].ColumnCount = 7;
gcSpreadSheet1.Sheets[0].RowCount = 34;
gcSpreadSheet1.Sheets[0].Cells[0, 0].Text = "Western";
gcSpreadSheet1.Sheets[0].Cells[0, 1].Text = "Western";
gcSpreadSheet1.Sheets[0].Cells[0, 2].Text = "Western";
gcSpreadSheet1.Sheets[0].Cells[1, 0].Text = "A";
gcSpreadSheet1.Sheets[0].Cells[1, 1].Text = "B";
gcSpreadSheet1.Sheets[0].Cells[1, 2].Text = "C";
gcSpreadSheet1.Sheets[0].Cells[2, 0].Text = "A";
gcSpreadSheet1.Sheets[0].Cells[2, 1].Text = "B";
gcSpreadSheet1.Sheets[0].Cells[2, 2].Text = "C";
gcSpreadSheet1.Sheets[0].RowRangeGroup.Group(0, 2);
//The following code removes the row range group
//gcSpreadSheet1.Sheets[0].RowRangeGroup.Ungroup(0, 2);
gcSpreadSheet1.Sheets[0].ColumnRangeGroup.Group(0, 1);
//The following code removes the column range group
//gcSpreadSheet1.Sheets[0].ColumnRangeGroup.Ungroup(0, 1);      
gcSpreadSheet1.Invalidate();

private void button1_Click(object sender, RoutedEventArgs e)
        {
gcSpreadSheet1.Sheets[0].RowRangeGroup.Expand(0, false);
gcSpreadSheet1.Sheets[0].ColumnRangeGroup.Expand(0, false);
gcSpreadSheet1.Invalidate();
      }
GcSpreadSheet1.Sheets(0).ColumnCount = 7
GcSpreadSheet1.Sheets(0).RowCount = 34
GcSpreadSheet1.Sheets(0).Cells(0, 0).Text = "Western"
GcSpreadSheet1.Sheets(0).Cells(0, 1).Text = "Western"
GcSpreadSheet1.Sheets(0).Cells(0, 2).Text = "Western"
GcSpreadSheet1.Sheets(0).Cells(1, 0).Text = "A"
GcSpreadSheet1.Sheets(0).Cells(1, 1).Text = "B"
GcSpreadSheet1.Sheets(0).Cells(1, 2).Text = "C"
GcSpreadSheet1.Sheets(0).Cells(2, 0).Text = "A"
GcSpreadSheet1.Sheets(0).Cells(2, 1).Text = "B"
GcSpreadSheet1.Sheets(0).Cells(2, 2).Text = "C"
GcSpreadSheet1.Sheets(0).RowRangeGroup.Group(0, 2)
'The following code removes the row range group
'GcSpreadSheet1.Sheets(0).RowRangeGroup.Ungroup(0, 2)
GcSpreadSheet1.Sheets(0).ColumnRangeGroup.Group(0, 1)
'The following code removes the column range group
'GcSpreadSheet1.Sheets(0).ColumnRangeGroup.Ungroup(0, 1)      
GcSpreadSheet1.Invalidate()

 Private Sub Button1_Click(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles Button1.Click
GcSpreadSheet1.Sheets(0).RowRangeGroup.Expand(0, False)
GcSpreadSheet1.Sheets(0).ColumnRangeGroup.Expand(0, False)
GcSpreadSheet1.Invalidate()
End Sub
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)

See Also

Reference

RangeGroup Class
RangeGroup Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.