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; }
public CT_Title() { this.extLstField = new List<CT_Extension>(); this.overlayField = new CT_Boolean(); this.layoutField = new CT_Layout(); this.txField = new CT_Tx(); }
public CT_DispUnitsLbl() { this.txField = new CT_Tx(); this.layoutField = new CT_Layout(); }
public CT_TrendlineLbl() { this.extLstField = new List<CT_Extension>(); this.numFmtField = new CT_NumFmt(); this.txField = new CT_Tx(); this.layoutField = new CT_Layout(); }