Grouping and Ungrouping Rows and Columns
Introduction
In a Microsoft Excel file, you can create an outline for the data to let you show and hide levels of detail with a single mouse click.
Click the Outline Symbols, 1,2,3, + and - to quickly display only the rows or columns that provide summaries or headings for sections in a worksheet, or you can use the symbols to see details under an individual summary or heading as shown below in the figure:
Grouping of rows & columns
Group Management of Rows & Columns
Aspose.Cells provides a class, Workbook that represents a Microsoft Excel file. The Workbook class contains a Worksheets collection that allows access to each worksheet in the Excel file. A worksheet is represented by the Worksheet class. The Worksheet class provides a Cells collection that represents all cells in the worksheet.
The Cells collection provides several methods to manage rows or columns in a worksheet, few of these are discussed below in more detail.
Grouping Rows & Columns
It is possible to group rows or columns by calling the groupRows and groupColumns methods of the Cells collection. Both methods take the following parameters:
- First row/column index, the first row or column in the group.
- Last row/column index, the last row or column in the group.
- Is hidden, a Boolean parameter that specifies whether to hide rows/columns after grouping or not.
Group Settings
Microsoft Excel also allows to configure group settings for displaying:
- Summary rows below detail.
- Summary columns to right of detail.
Group settings
It is possible to configure these group settings using the Worksheet class' Outline property.
Summary Rows Below Detail
Developers can control displaying summary rows below detail by using the Outline class' SummaryRowBelow method.
Summary Columns to Right of Detail
It is possible to control whether summary columns are displayed to the right of the details with the Outline class' SummaryColumnRight method.
Ungrouping Rows & Columns
Ungroup grouped rows or columns by calling the Cells collection’s UngroupRows and UngroupColumns methods. Both methods take the same parameters:
- First row or column index, the first row/column to be ungrouped.
- Last row or column index, the last row/column to be ungrouped.