Class FunctionManager
Provides methods for registering functions and accessing registered functions in a RadSpreadsheet instance.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public static class FunctionManager
Methods
GetAllFunctions()
Gets all registered functions.
Declaration
public static IEnumerable<FunctionBase> GetAllFunctions()
Returns
System.Collections.Generic.IEnumerable<FunctionBase>
FunctionBase instances of all registered functions. |
GetFunctionByName(String)
Gets a FunctionBase instance by a specified functionName.
Declaration
public static FunctionBase GetFunctionByName(string functionName)
Parameters
System.String
functionName
Name of the function. |
Returns
FunctionBase
An FunctionBase instance. |
RegisterFunction(FunctionBase)
Registers a function.
Declaration
public static void RegisterFunction(FunctionBase function)
Parameters
FunctionBase
function
The function. |
UnregisterFunction(String)
Unregisters the function.
Declaration
public static void UnregisterFunction(string functionName)
Parameters
System.String
functionName
Name of the function. |
UnregisterFunction(FunctionBase)
Unregisters the function.
Declaration
public static void UnregisterFunction(FunctionBase function)
Parameters
FunctionBase
function
The function. |