Class Aggregates
Hold the list of registered aggregate functions.
Inheritance
System.Object
Aggregates
Namespace: FastReport.AdvMatrix
Assembly: FastReport.dll
Syntax
public static class Aggregates
Properties
Names
Gets names of aggregates registered.
Declaration
public static string[] Names { get; }
Property Value
Type | Description |
---|---|
System.String[] |
Methods
Find(String)
Returns an aggregate with specified name.
Declaration
public static Type Find(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of aggregate function. |
Returns
Type | Description |
---|---|
System.Type | The aggregate class type. |
Register(String, Type)
Registers the aggregate function.
Declaration
public static void Register(string name, Type aggregateType)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The function name. |
System.Type | aggregateType | The type of aggregate class. |