예제 #1
0
파일: Math.cs 프로젝트: JustinChangTW/npoi
 public static CT_FType Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_FType ctObj = new CT_FType();
     if (node.Attributes["m:val"] != null)
         ctObj.val = (ST_FType)Enum.Parse(typeof(ST_FType), node.Attributes["m:val"].Value);
     return ctObj;
 }
예제 #2
0
파일: Math.cs 프로젝트: hanwangkun/npoi
 /// <summary>
 /// CT_FPr class constructor
 /// </summary>
 public CT_FPr()
 {
     this.ctrlPrField = new CT_CtrlPr();
     this.typeField = new CT_FType();
 }