예제 #1
0
파일: Math.cs 프로젝트: JustinChangTW/npoi
 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;
 }
예제 #2
0
파일: Math.cs 프로젝트: hanwangkun/npoi
 /// <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();
 }