CustomFunctionCollection Interface
A collection of custom functions in a workbook.
Namespace: DevExpress.Spreadsheet.Functions
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
public interface CustomFunctionCollection :
ICollection<ICustomFunction>,
IEnumerable<ICustomFunction>,
IEnumerable
Related API Members
The following members return CustomFunctionCollection objects:
Remarks
The CustomFunctionCollection object is available via the IWorkbook.CustomFunctions or the IWorkbook.GlobalCustomFunctions properties.
To add a custom function to a workbook, implement the ICustomFunction interface, instantiate the object and add it to the CustomFunctionCollection collection.
See Also