예제 #1
0
파일: Math.cs 프로젝트: JustinChangTW/npoi
 public static CT_Integer2 Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_Integer2 ctObj = new CT_Integer2();
     ctObj.val = XmlHelper.ReadString(node.Attributes["m:val"]);
     return ctObj;
 }
예제 #2
0
파일: Math.cs 프로젝트: hanwangkun/npoi
 /// <summary>
 /// CT_OMathArgPr class constructor
 /// </summary>
 public CT_OMathArgPr()
 {
     this.argSzField = new CT_Integer2();
 }