private IHojaDeEstilos GetHojaDeEstilos(IHojaDeEstilos estilos)
        {
            if (estilos != null && estilos.GenerarEstilos().HasChildren)
            {
                return(estilos);
            }

            return(new HojaDeEstilos());
        }
 private void Inicializar()
 {
     _letras             = _arrLetras;
     _numeroFila         = UInt32.Parse("1");
     _encabezados        = new string[] {};
     _excluirColumnas    = new string[] {};
     _fuenteDeDatos      = new DataTable();
     _hojaDeEstilos      = new HojaDeEstilos();
     _estilos            = new EstiloColumnas[] {};
     _nombreColumnaNivel = "Nivel";
 }