Example #1
0
 internal DappleView(string strFile)
 {
     this.doc = new dappleviewDoc();
      this.dappleView = new dappleviewType(doc.Load(strFile));
 }
Example #2
0
 internal void Save(string strFile)
 {
     this.doc = new dappleviewDoc();
      doc.Save(strFile, this.dappleView);
 }
Example #3
0
 internal DappleView()
 {
     this.doc = new dappleviewDoc();
      this.dappleView = new dappleviewType(doc.CreateRootElement("", "dappleview"));
 }