123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Xml;
- namespace HTEXLib
- {
- public class WarpObj
- {
- public XmlDocument zip { get; set; }
- public NodesTable slideLayoutTables { get; set; }
- public NodesTable slideMasterTables { get; set; }
- public XmlNode slideMasterTextStyles { get; set; }
- public Dictionary<string, Dictionary<string, string>> slideResObj { get; set; }
- public Dictionary<string, Dictionary<string, string>> layoutResObj { get; set; }
- public Dictionary<string, Dictionary<string, string>> masterResObj { get; set; }
- public XmlNode slideLayoutContent { get; set; }
- public XmlNode slideMasterContent { get; set; }
- public XmlNode themeContent { get; set; }
- public XmlNode tableStyles { get; set; }
- public Htex htex { get; set; }
- }
- }public class NodesTable {
- public Dictionary<string, XmlNode> idTable { get; set; }
- public Dictionary<string, XmlNode> idxTable { get; set; }
- public Dictionary<string, XmlNode> typeTable { get; set; }
- }
|