Clique ou arraste para redimensionar

NFeIntegratorShowPrinterList Métodos

Retorna a lista de impressoras disponiveis do windows, as impressoras retornadas são do usuário corrente, em uma aplicação WEB as impressoras podem não estar disponiveis.

Namespace:  Vinco.iContNFe.NFeIntegratorInterOp
Assembly:  NFeIntegratorInterOp (in NFeIntegratorInterOp.dll) Versão: 1.22.0.2 (1.22.2.230)
Sintaxe
public string ShowPrinterList()

Valor de Retorno

Tipo: String
Exemplos
 1//Exemplo em C#
 2try
 3{
 4    var _interOpIntegrator = new NFeIntegrator();
 5    var summary = _interOpIntegrator.ShowPrinterList();
 6    MessageBox.Show(summary, "ShowPrinterList", MessageBoxButtons.OK, MessageBoxIcon.Information);
 7}
 8catch (Exception ex)
 9{
10    MessageBox.Show(string.Format("{0}", ex), "Erro", MessageBoxButtons.OK, MessageBoxIcon.Error);
11}
Veja Também