Class HiddenValuesHandlingFunction
Base class for functions that needs to handle cells that is not visible.
Inheritance
System.Object
HiddenValuesHandlingFunction
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()
Assembly: EPPlus.dll
public abstract class HiddenValuesHandlingFunction : ExcelFunction
Constructors
Declaration
public HiddenValuesHandlingFunction()
Properties
Set to true to indicate whether the function should ignore error values
Declaration
public bool IgnoreErrors { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
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 |
|
Set to true to indicate whether the function should ignore nested SUBTOTAL and AGGREGATE functions
Declaration
public bool IgnoreNestedSubtotalsAndAggregates { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Methods
ArgsToDoubleEnumerable(IEnumerable<FunctionArgument>, ParsingContext, out ExcelErrorValue)
Declaration
protected override IList<double> ArgsToDoubleEnumerable(IEnumerable<FunctionArgument> arguments, ParsingContext context, out ExcelErrorValue error)
Parameters
Returns
Type |
Description |
System.Collections.Generic.IList<System.Double> |
|
Overrides
ArgsToDoubleEnumerable(IEnumerable<FunctionArgument>, ParsingContext, Boolean, Boolean, out ExcelErrorValue)
Declaration
protected IList<double> ArgsToDoubleEnumerable(IEnumerable<FunctionArgument> arguments, ParsingContext context, bool ignoreErrors, bool ignoreNonNumeric, out ExcelErrorValue error)
Parameters
Returns
Type |
Description |
System.Collections.Generic.IList<System.Double> |
|
Exceptions
ShouldIgnore(FunctionArgument, ParsingContext)
Declaration
protected bool ShouldIgnore(FunctionArgument arg, ParsingContext context)
Parameters
Returns
Type |
Description |
System.Boolean |
|
ShouldIgnore(ICellInfo, ParsingContext)
Declaration
protected bool ShouldIgnore(ICellInfo c, ParsingContext context)
Parameters
Returns
Type |
Description |
System.Boolean |
|