protected bool ShouldIgnore(FunctionArgument arg) { if (IgnoreHiddenValues && arg.ExcelStateFlagIsSet(ExcelCellState.HiddenCell)) { return(true); } return(false); }
protected bool ShouldIgnore(FunctionArgument arg) { if (IgnoreHiddenValues && arg.ExcelStateFlagIsSet(ExcelCellState.HiddenCell)) { return true; } return false; }
internal static bool ShouldIgnore(bool ignoreHiddenValues, FunctionArgument arg, ParsingContext context) { return(ignoreHiddenValues && arg.ExcelStateFlagIsSet(ExcelCellState.HiddenCell)); }
internal static bool ShouldIgnore(bool ignoreHiddenValues, FunctionArgument arg, ParsingContext context) { return (ignoreHiddenValues && arg.ExcelStateFlagIsSet(ExcelCellState.HiddenCell)); }
public void ExcelStateFlagIsSetShouldReturnFalseWhenNotSet() { var arg = new FunctionArgument(2); Assert.IsFalse(arg.ExcelStateFlagIsSet(ExcelCellState.HiddenCell)); }
public void ShouldSetExcelState() { var arg = new FunctionArgument(2); arg.SetExcelStateFlag(ExcelCellState.HiddenCell); Assert.IsTrue(arg.ExcelStateFlagIsSet(ExcelCellState.HiddenCell)); }