获取打印机名称
使用GetPrinterNames方法检索连接到机器的所有可用打印机。该方法将返回一个字符串数据类型的打印机名称列表。
这段代码片段提供了一种简单有效的方法来列出连接到您计算机的所有打印机,这对于在大型应用程序中调试或管理打印机配置非常有用。
准备开始了吗?
Nuget 下载 44,051 | 版本: 2026.7 刚刚发布
using IronPrint;
using System;
using System.Collections.Generic;
// Retrieve printers' name
List<string> printersName = Printer.GetPrinterNames();
foreach (var printer in printersName)
{
Console.WriteLine(printer);
}
Imports IronPrint Imports System Imports System.Collections.Generic ' Retrieve printers' name Private printersName As List(Of String) = Printer.GetPrinterNames() For Each printer In printersName Console.WriteLine(printer) Next printer
Install-Package IronPrint
使用GetPrinterNames方法检索连接到机器的所有可用打印机。该方法将返回一个字符串数据类型的打印机名称列表。
这段代码片段提供了一种简单有效的方法来列出连接到您计算机的所有打印机,这对于在大型应用程序中调试或管理打印机配置非常有用。