Class HiddenValuesHandlingFunction
Base class for functions that needs to handle cells that is not visible.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: OfficeOpenXml.FormulaParsing.Excel.Functions
Assembly: EPPlus.dll
Syntax
public abstract class HiddenValuesHandlingFunction : ExcelFunction
Properties
IgnoreHiddenValues
Set to true or false to indicate whether the function should ignore hidden values.
Declaration
public bool IgnoreHiddenValues { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
ArgsToDoubleEnumerable(IEnumerable<FunctionArgument>, ParsingContext)
Declaration
protected override IEnumerable<ExcelDoubleCellValue> ArgsToDoubleEnumerable(IEnumerable<FunctionArgument> arguments, ParsingContext context)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<FunctionArgument> | arguments | |
ParsingContext | context |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<ExcelDoubleCellValue> |
Overrides
ArgsToDoubleEnumerable(IEnumerable<FunctionArgument>, ParsingContext, Boolean)
Declaration
protected IEnumerable<ExcelDoubleCellValue> ArgsToDoubleEnumerable(IEnumerable<FunctionArgument> arguments, ParsingContext context, bool ignoreErrors)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<FunctionArgument> | arguments | |
ParsingContext | context | |
System.Boolean | ignoreErrors |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<ExcelDoubleCellValue> |
ShouldIgnore(FunctionArgument)
Declaration
protected bool ShouldIgnore(FunctionArgument arg)
Parameters
Type | Name | Description |
---|---|---|
FunctionArgument | arg |
Returns
Type | Description |
---|---|
System.Boolean |
ShouldIgnore(ExcelDataProvider.ICellInfo, ParsingContext)
Declaration
protected bool ShouldIgnore(ExcelDataProvider.ICellInfo c, ParsingContext context)
Parameters
Type | Name | Description |
---|---|---|
ExcelDataProvider.ICellInfo | c | |
ParsingContext | context |
Returns
Type | Description |
---|---|
System.Boolean |