/// <summary>
 /// Matches an ExcelProperty
 /// </summary>
 /// <param name="p"></param>
 /// <returns></returns>
 public static bool Matches(ExcelProperty p)
 {
     TraceLog.WriteLine(new StackFrame().GetMethod().Name, "Matching excel property" + p.Name + "with" + Prefix + SEPERATOR);
     return p.Name.StartsWith(Prefix + SEPERATOR);
 }
Esempio n. 2
0
 /// <summary>
 /// Matches an ExcelProperty
 /// </summary>
 /// <param name="p"></param>
 /// <returns></returns>
 public static bool Matches(ExcelProperty p)
 {
     TraceLog.WriteLine(new StackFrame().GetMethod().Name, "Matching excel property" + p.Name + "with" + Prefix + SEPERATOR);
     return(p.Name.StartsWith(Prefix + SEPERATOR));
 }
 /// <summary>
 /// Constructs ExcelQueryProperty
 /// </summary>
 public ExcelQueryProperty(ExcelProperty property)
     : base(property.Name, property.Value)
 {
 }
Esempio n. 4
0
 /// <summary>
 /// Constructs ExcelQueryProperty
 /// </summary>
 public ExcelQueryProperty(ExcelProperty property) : base(property.Name, property.Value)
 {
 }