Example #1
0
 public static CT_Shp Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_Shp ctObj = new CT_Shp();
     if (node.Attributes["m:val"] != null)
         ctObj.val = (ST_Shp)Enum.Parse(typeof(ST_Shp), node.Attributes["m:val"].Value);
     return ctObj;
 }
Example #2
0
 /// <summary>
 /// CT_DPr class constructor
 /// </summary>
 public CT_DPr()
 {
     this.ctrlPrField = new CT_CtrlPr();
     this.shpField = new CT_Shp();
     this.growField = new CT_OnOff();
     this.endChrField = new CT_Char();
     this.sepChrField = new CT_Char();
     this.begChrField = new CT_Char();
 }