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