Exemple #1
0
 public CT_EdnProps()
 {
     this.numRestartField = new CT_NumRestart();
     this.numStartField   = new CT_DecimalNumber();
     this.numFmtField     = new CT_NumFmt();
     this.posField        = new CT_EdnPos();
 }
Exemple #2
0
 public CT_Lvl()
 {
     this.rPrField   = new CT_RPr();
     this.pPrField   = new CT_PPr();
     this.lvlJcField = new CT_Jc();
     //this.legacyField = new CT_LvlLegacy();
     //this.lvlPicBulletIdField = new CT_DecimalNumber();
     this.lvlTextField = new CT_LevelText();
     //this.suffField = new CT_LevelSuffix();
     //this.isLglField = new CT_OnOff();
     //this.pStyleField = new CT_String();
     //this.lvlRestartField = new CT_DecimalNumber();
     this.numFmtField = new CT_NumFmt();
     this.startField  = new CT_DecimalNumber();
 }
Exemple #3
0
 public static CT_NumFmt Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_NumFmt ctObj = new CT_NumFmt();
     if (node.Attributes["w:val"] != null)
         ctObj.val = (ST_NumberFormat)Enum.Parse(typeof(ST_NumberFormat), node.Attributes["w:val"].Value);
     return ctObj;
 }
Exemple #4
0
 public CT_Lvl()
 {
     this.rPrField = new CT_RPr();
     this.pPrField = new CT_PPr();
     this.lvlJcField = new CT_Jc();
     //this.legacyField = new CT_LvlLegacy();
     //this.lvlPicBulletIdField = new CT_DecimalNumber();
     this.lvlTextField = new CT_LevelText();
     //this.suffField = new CT_LevelSuffix();
     //this.isLglField = new CT_OnOff();
     //this.pStyleField = new CT_String();
     //this.lvlRestartField = new CT_DecimalNumber();
     this.numFmtField = new CT_NumFmt();
     this.startField = new CT_DecimalNumber();
 }