public void Set(string prop, string val) { CustomXml.Set(_wb, prop, val); }
public string Get(string prop) { return(CustomXml.Get(_wb, prop)); }
public static void SetSourceCode(Workbook wb, string sheetCodeName, string sourceCode) { CustomXml.Set(wb, prefix + sheetCodeName, sourceCode); //todo: this is probably a good time to clean out source associated with any sheets that no longer exist }
public static Dictionary <string, string> GetAllSourceCode(Workbook wb) { return(CustomXml.GetAll(wb, prefix)); }
public static string GetSourceCode(Workbook wb, string sheetCodeName) { var v = CustomXml.Get(wb, prefix + sheetCodeName); return(v); }