Back to Devexpress

IXlOutlineProperties.SummaryRight Property

corelibraries-devexpress-dot-export-dot-xl-dot-ixloutlineproperties-803f2adf.md

latest2.8 KB
Original Source

IXlOutlineProperties.SummaryRight Property

Gets or sets a value indicating whether the summary columns are located to the right of detail columns.

Namespace : DevExpress.Export.Xl

Assembly : DevExpress.Printing.v25.2.Core.dll

NuGet Package : DevExpress.Printing.Core

Declaration

csharp
bool SummaryRight { get; set; }
vb
Property SummaryRight As Boolean

Property Value

TypeDescription
Boolean

true , if summary columns are to the right of each group of detail columns; otherwise, false.

|

Remarks

Use the SummaryRight property to specify the summary column location. For example, if summary columns are located to the left of detail columns in each group, set the SummaryRight property to false.

In this case, the grouping bar changes direction, so that the minus outline symbol is displayed above the summary column on the left side of the group.

SummaryRight = trueSummaryRight = false

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the SummaryRight property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

excel-export-library-generate-sales-report/CS/XLExportExampleSalesReport/Form1.cs#L129

csharp
sheet.OutlineProperties.SummaryBelow = true;
sheet.OutlineProperties.SummaryRight = true;

See Also

SummaryBelow

IXlOutlineProperties Interface

IXlOutlineProperties Members

DevExpress.Export.Xl Namespace