C# Класс ExcelFormulaParser.Engine.Excel.Functions.FunctionRepository

This class provides methods for accessing/modifying VBA Functions.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Clear ( ) : void

Removes all functions from the repository

Create ( ) : FunctionRepository
Exists ( string name ) : bool

Returns true if the the supplied name exists in the repository.

GetFunction ( string name ) : ExcelFunction
LoadModule ( IFunctionModule module ) : void

Loads a module of ExcelFunctions to the function repository.

Приватные методы

Метод Описание
FunctionRepository ( ) : System

Описание методов

Clear() публичный Метод

Removes all functions from the repository
public Clear ( ) : void
Результат void

Create() публичный статический Метод

public static Create ( ) : FunctionRepository
Результат FunctionRepository

Exists() публичный Метод

Returns true if the the supplied name exists in the repository.
public Exists ( string name ) : bool
name string
Результат bool

GetFunction() публичный Метод

public GetFunction ( string name ) : ExcelFunction
name string
Результат ExcelFunction

LoadModule() публичный Метод

Loads a module of ExcelFunctions to the function repository.
public LoadModule ( IFunctionModule module ) : void
module IFunctionModule A that can be used for adding functions
Результат void