Ejemplo n.º 1
0
 private void Initialize()
 {
     try
     {
         _nconfCache  = new ConfigCache(_numbering, _styles, new ConfigFactory());
         _pstateCache = new ParagraphStateCacheFactory(_styles, _body).Create();
     }
     catch { }
 }
Ejemplo n.º 2
0
 private void Initialize()
 {
     try
     {
         _nconfCache = new ConfigCache(_numbering, _styles, new ConfigFactory());
         var fac = new ParagraphStateCacheFactory
         {
             Body = _body,
             Styles = _styles,
             Numbering = _numbering
         };
         _pstateCache = fac.Create();
     }
     catch { }
 }