Esempio n. 1
0
 public static CT_Tx Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_Tx ctObj = new CT_Tx();
     foreach (XmlNode childNode in node.ChildNodes)
     {
         if (childNode.LocalName == "strRef")
             ctObj.strRef = CT_StrRef.Parse(childNode, namespaceManager);
         else if (childNode.LocalName == "rich")
             ctObj.rich = CT_TextBody.Parse(childNode, namespaceManager);
     }
     return ctObj;
 }
Esempio n. 2
0
 public CT_Title()
 {
     this.extLstField = new List<CT_Extension>();
     this.overlayField = new CT_Boolean();
     this.layoutField = new CT_Layout();
     this.txField = new CT_Tx();
 }
Esempio n. 3
0
 public CT_DispUnitsLbl()
 {
     this.txField = new CT_Tx();
     this.layoutField = new CT_Layout();
 }
Esempio n. 4
0
 public CT_TrendlineLbl()
 {
     this.extLstField = new List<CT_Extension>();
     this.numFmtField = new CT_NumFmt();
     this.txField = new CT_Tx();
     this.layoutField = new CT_Layout();
 }