Exemplo n.º 1
0
 /// <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();
 }
Exemplo n.º 2
0
 public static CT_YAlign Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_YAlign ctObj = new CT_YAlign();
     if (node.Attributes["m:val"] != null)
         ctObj.val = (ST_YAlign)Enum.Parse(typeof(ST_YAlign), node.Attributes["m:val"].Value);
     return ctObj;
 }
Exemplo n.º 3
0
 /// <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();
 }