Gets or sets the summary function type used to process the DataField values.
'Declaration
Public Property SummaryFunc As SummaryFunc
Property Value
SummaryFunc enumeration value that specifies the type of summarization to be performed on the field. Default is SummaryFunc.Sum
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;
}
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