Visual Basic (Declaration) | |
---|---|
Public Property SummaryRunning As SummaryRunning |
C# | |
---|---|
public SummaryRunning SummaryRunning {get; set;} |
Property Value
SummaryRunning enumeration that determines the summarization behavior. Default is SummaryRunning.None.Setting this property to Group or All will make ActiveReports print a running summary of the field at the group or report level.
When used with Groups this property should only be set when SummaryType is GrandTotal or PageTotal, otherwise it should be set to None.
C# | Copy Code |
---|---|
Private void detail_Format(object sender, System.EventArgs eArgs) { this.TextBox1.SummaryFunc = SummaryFunc.Sum; this.TextBox1.SummaryGroup = null; this.TextBox1.SummaryRunning = SummaryRunning.None; this.TextBox1.SummaryType = SummaryType.None; } |
Visual Basic | Copy Code |
---|---|
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.TextBox1.SummaryFunc = SummaryFunc.Sum Me.TextBox1.SummaryGroup = Nothing Me.TextBox1.SummaryRunning = SummaryRunning.None Me.TextBox1.SummaryType = SummaryType.None End Sub |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
Reference
TextBox ClassTextBox Members
ActiveReports6~GrapeCity.ActiveReports.TextBox~SummaryFunc
ActiveReports6~GrapeCity.ActiveReports.TextBox~SummaryGroup
ActiveReports6~GrapeCity.ActiveReports.TextBox~SummaryType