ExcelFormulaParser.Engine.Excel.Functions.HiddenValuesHandlingFunction.ShouldIgnore C# (CSharp) Method

ShouldIgnore() protected method

protected ShouldIgnore ( FunctionArgument arg ) : bool
arg FunctionArgument
return bool
        protected bool ShouldIgnore(FunctionArgument arg)
        {
            if (IgnoreHiddenValues && arg.ExcelStateFlagIsSet(ExcelCellState.HiddenCell))
            {
                return true;
            }
            return false;
        }
HiddenValuesHandlingFunction