Back to Devexpress

CustomFunctionCollection Interface

officefileapi-devexpress-dot-spreadsheet-dot-functions-b9551ac4.md

latest2.3 KB
Original Source

CustomFunctionCollection Interface

A collection of custom functions in a workbook.

Namespace : DevExpress.Spreadsheet.Functions

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

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
public interface CustomFunctionCollection :
    ICollection<ICustomFunction>,
    IEnumerable<ICustomFunction>,
    IEnumerable
vb
Public Interface CustomFunctionCollection
    Inherits ICollection(Of ICustomFunction),
             IEnumerable(Of ICustomFunction),
             IEnumerable

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

CustomFunctionCollection Members

DevExpress.Spreadsheet.Functions Namespace