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