Beispiel #1
0
 public static CT_OMathArgPr Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_OMathArgPr ctObj = new CT_OMathArgPr();
     foreach (XmlNode childNode in node.ChildNodes)
     {
         if (childNode.LocalName == "argSz")
             ctObj.argSz = CT_Integer2.Parse(childNode, namespaceManager);
     }
     return ctObj;
 }
Beispiel #2
0
 /// <summary>
 /// CT_OMathArg class constructor
 /// </summary>
 public CT_OMathArg()
 {
     this.ctrlPrField = new CT_CtrlPr();
     this.itemsElementNameField = new ItemsChoiceType7[0];
     this.itemsField = new object[0];
     this.argPrField = new CT_OMathArgPr();
 }