Initializes a new instance of the Aggregate class, assigning the name, expression, data binding, scope and function of the aggregate.

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

Syntax

C#
public Aggregate(
	string name,
	string expressionText,
	C1DataBinding dataBinding,
	RunningEnum running,
	AggregateFuncEnum func
)
Visual Basic
Public Sub New ( _
	name As String, _
	expressionText As String, _
	dataBinding As C1DataBinding, _
	running As RunningEnum, _
	func As AggregateFuncEnum _
)

Parameters

name
Type: System..::..String
A string assigned to the Name property of this aggregate.
expressionText
Type: System..::..String
A string assigned to the ExpressionText property of this aggregate.
dataBinding
Type: C1.C1Preview.DataBinding..::..C1DataBinding
C1DataBinding assigned to the DataBinding property of this aggregate.
running
Type: C1.C1Preview.DataBinding..::..RunningEnum
A value assigned to the Running property of this aggregate.
func
Type: C1.C1Preview.DataBinding..::..AggregateFuncEnum
A value assigned to the Func property of this aggregate.

See Also