Visual Basic (Declaration) | |
---|---|
Public Property SummaryGroup As System.String |
C# | |
---|---|
public System.string SummaryGroup {get; set;} |
For example, setting a sum of Price for an Order group header will reset the sum to zero for each order group. The property is only used when SummaryType is set to SummaryType.SubTotal
C# | Copy Code |
---|---|
private void detail_Format(object sender, System.EventArgs eArgs) { 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.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~SummaryRunning
ActiveReports6~GrapeCity.ActiveReports.TextBox~SummaryType