Table of Contents

Class NameValueProvider

Namespace
OfficeOpenXml.FormulaParsing
Assembly
EPPlus.dll

Provides access to static, preconfigured instances of INameValueProvider

public class NameValueProvider : INameValueProvider
Inheritance
NameValueProvider
Implements
Inherited Members

Properties

Empty

public static INameValueProvider Empty { get; }

Property Value

INameValueProvider

Methods

GetNamedValue(string)

Implementation of the GetNamedValue function. In this case (Empty provider) it always return null.

public object GetNamedValue(string key)

Parameters

key string

Returns

object

GetNamedValue(string, string)

Get named value

public object GetNamedValue(string key, string worksheet)

Parameters

key string
worksheet string

Returns

object

IsNamedValue(string, string)

Implementation of the IsNamedValue function. In this case (Empty provider) it always return false.

public bool IsNamedValue(string key, string worksheet)

Parameters

key string
worksheet string

Returns

bool

Reload()

Implementation of the Reload function

public void Reload()