LoadModule() public method

Loads a module of ExcelFunctions to the function repository.
public LoadModule ( IFunctionModule module ) : void
module IFunctionModule A that can be used for adding functions
return void
コード例 #1
0
        public static FunctionRepository Create()
        {
            var repo = new FunctionRepository();

            repo.LoadModule(new BuiltInFunctions());
            return(repo);
        }
コード例 #2
0
 public static FunctionRepository Create()
 {
     var repo = new FunctionRepository();
     repo.LoadModule(new BuiltInFunctions());
     return repo;
 }