Specifies whether to show a running sum for the field.

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
[DefaultValueAttribute(RunningSumEnum.NoRunningSum)]
public RunningSumEnum RunningSum { get; set; }
Visual Basic
<DefaultValueAttribute(RunningSumEnum.NoRunningSum)> _
Public Property RunningSum As RunningSumEnum
	Get
	Set

Remarks

You can use the RunningSum property to calculate record-by-record or group-by-group totals in a report.

The RunningSum property specifies whether a calculated field on a report displays a running total and lets you set the range over which values are accumulated.

The default value for this property is RunningSumEnum.NoRunningSum.

Examples

For an example using the RunningSum property, see the Adding Running Sums topic.

See Also