ExcelFormulaParser.Engine.Excel.Functions.FunctionArgument.ExcelStateFlagIsSet C# (CSharp) Method

ExcelStateFlagIsSet() public method

public ExcelStateFlagIsSet ( ExcelCellState state ) : bool
state ExcelCellState
return bool
        public bool ExcelStateFlagIsSet(ExcelCellState state)
        {
            return (_excelCellState & state) != 0;
        }

Usage Example

 protected bool ShouldIgnore(FunctionArgument arg)
 {
     if (IgnoreHiddenValues && arg.ExcelStateFlagIsSet(ExcelCellState.HiddenCell))
     {
         return true;
     }
     return false;
 }
All Usage Examples Of ExcelFormulaParser.Engine.Excel.Functions.FunctionArgument::ExcelStateFlagIsSet