示例#1
0
文件: Math.cs 项目: hanwangkun/npoi
 /// <summary>
 /// CT_GroupChrPr class constructor
 /// </summary>
 public CT_GroupChrPr()
 {
     this.ctrlPrField = new CT_CtrlPr();
     this.vertJcField = new CT_TopBot();
     this.posField = new CT_TopBot();
     this.chrField = new CT_Char();
 }
示例#2
0
 public static CT_TopBot Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_TopBot ctObj = new CT_TopBot();
     if (node.Attributes["m:val"] != null)
         ctObj.val = (ST_TopBot)Enum.Parse(typeof(ST_TopBot), node.Attributes["m:val"].Value);
     return ctObj;
 }
示例#3
0
文件: Math.cs 项目: hanwangkun/npoi
 /// <summary>
 /// CT_BarPr class constructor
 /// </summary>
 public CT_BarPr()
 {
     this.ctrlPrField = new CT_CtrlPr();
     this.posField = new CT_TopBot();
 }