Пример #1
0
 public void Set(string prop, string val)
 {
     CustomXml.Set(_wb, prop, val);
 }
Пример #2
0
 public string Get(string prop)
 {
     return(CustomXml.Get(_wb, prop));
 }
Пример #3
0
 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
 }
Пример #4
0
 public static Dictionary <string, string> GetAllSourceCode(Workbook wb)
 {
     return(CustomXml.GetAll(wb, prefix));
 }
Пример #5
0
        public static string GetSourceCode(Workbook wb, string sheetCodeName)
        {
            var v = CustomXml.Get(wb, prefix + sheetCodeName);

            return(v);
        }