13 lines
231 B
C#
13 lines
231 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Formula
|
|
{
|
|
internal class StandardFunctionNameProvider : IFunctionNameProvider
|
|
{
|
|
public FormulaValue CallFunction(Evaluator evaluator, Cell cell, STNode node)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|