Skip to main content
A newer version of this page is available. .

CustomFunctionCollection Interface

A collection of custom functions in a workbook.

Namespace: DevExpress.Spreadsheet.Functions

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

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