Document Solutions for Excel, .NET Edition | Document Solutions
Features / Group / Summary Row
In This Topic
    Summary Row
    In This Topic

    When grouping is performed in a spreadsheet, a summary row is automatically created corresponding to each group. Summary rows are group header rows that display the group name with the information about the group that is being created.

    While working with DsExcel .NET, you modify and customize the summary row as per the requirement using the SummaryRow property of the IOutline interface.

    Refer to the following example code to set summary row.

    C#
    Copy Code
    //summary
    worksheet.Outline.SummaryRow = SummaryRow.Above;
    
    //Summary row will be row 4.
    worksheet.Range["5:20"].Group();
    //Summary row will be row 14.
    worksheet.Range["15:20"].Group();