Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

When grouping columns, SummaryColumns determines where the summary columns for the groups are located. By default the summary rows are located to the right of the groupings.

{signature}
{example}{code:csharp|title=C#}

          //--- Get SummaryColumns
          Worksheet.SummaryColumnsLocation location = ws.SummaryColumns;

          //--- Set SummaryColumns
          ws.SummaryColumns = Worksheet.SummaryColumnsLocation.Left;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get SummaryColumns
          Dim location As Worksheet.SummaryColumnsLocation = ws.SummaryColumns

          '--- Set SummaryColumns
          ws.SummaryColumns = Worksheet.SummaryColumnsLocation.Left
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}When grouping columns, [SummaryColumns|Worksheet.SummaryColumns] determines where the summary columns for the groups are located. By default the summary rows are located to the right of the groupings.{excerpt}
{signature:C#}
 public SummaryColumnsLocation SummaryColumns{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property SummaryColumns() As SummaryColumnsLocation
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle