Skip to main content

CustomFunctionCollection Interface

A collection of custom functions in a workbook.

Namespace: DevExpress.Spreadsheet.Functions

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

public interface CustomFunctionCollection :
    ICollection<ICustomFunction>,
    IEnumerable<ICustomFunction>,
    IEnumerable

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