예제 #1
0
파일: Math.cs 프로젝트: hanwangkun/npoi
 /// <summary>
 /// CT_MPr class constructor
 /// </summary>
 public CT_MPr()
 {
     this.ctrlPrField = new CT_CtrlPr();
     this.mcsField = new List<CT_MC>();
     this.cGpField = new CT_UnSignedInteger();
     this.cSpField = new CT_UnSignedInteger();
     this.rSpField = new CT_UnSignedInteger();
     this.cGpRuleField = new CT_SpacingRule();
     this.rSpRuleField = new CT_SpacingRule();
     this.plcHideField = new CT_OnOff();
     this.baseJcField = new CT_YAlign();
 }
예제 #2
0
파일: Math.cs 프로젝트: JustinChangTW/npoi
 public static CT_SpacingRule Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_SpacingRule ctObj = new CT_SpacingRule();
     ctObj.val = XmlHelper.ReadString(node.Attributes["m:val"]);
     return ctObj;
 }
예제 #3
0
파일: Math.cs 프로젝트: hanwangkun/npoi
 /// <summary>
 /// CT_EqArrPr class constructor
 /// </summary>
 public CT_EqArrPr()
 {
     this.ctrlPrField = new CT_CtrlPr();
     this.rSpField = new CT_UnSignedInteger();
     this.rSpRuleField = new CT_SpacingRule();
     this.objDistField = new CT_OnOff();
     this.maxDistField = new CT_OnOff();
     this.baseJcField = new CT_YAlign();
 }