Registry for spreadsheet formula functions.
Object
Namespace: Radzen.Documents.Spreadsheet
Assembly: Radzen.Blazor.dll
public class FunctionStoreInitializes a new instance of the FunctionStore class and registers built-in functions.
public FunctionStore()Registers a new formula function of type T, optionally under additional alias names (e.g. the modern dotted name STDEV.S for STDEV).
public void Add(String[] aliases)
| Type | Name | Description |
|---|---|---|
| String[] | aliases |
Gets a formula function by name, or returns an ErrorFunction if the function is not found.
public Documents.Spreadsheet.FormulaFunction Get(string functionName)
| Type | Name | Description |
|---|---|---|
| string | functionName | The name of the function to retrieve. |
| Type | Description |
|---|---|
| Documents.Spreadsheet.FormulaFunction | The formula function or an ErrorFunction if not found. |