Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Adding reference to RegisterCustomFunction.

...

Excerpt

The IFunction interface is used to implement custom Excel functions in .NET to be passed in to ExcelWriter Application; see Workbook.RegisterCustomFunction for more details.

Signature
C#
C#
public interface IFunction
{
    FunctionValue CustomFunction(IList<FunctionValue> args, Cell currentCell);
}

...