Пример #1
0
 public void agregarContenido(DataTable datos, string hoja, int x, int y)
 {
     Contenidos.Add(new Contenido()
     {
         Datos     = datos,
         HojaExcel = hoja,
         X         = x,
         Y         = y
     });
 }
Пример #2
0
 public void agregarContenido(object[][] datos, string hoja, int x, int y, string sColor = "")
 {
     Contenidos.Add(new Contenido()
     {
         Datos     = datos,
         HojaExcel = hoja,
         X         = x,
         Y         = y,
         Color     = sColor//PROY-ABSA-2015-001 JZAMUDIO
     });
 }